File tree Expand file tree Collapse file tree 1 file changed +86
-5
lines changed
Expand file tree Collapse file tree 1 file changed +86
-5
lines changed Original file line number Diff line number Diff line change 1+ # ################### VisualStudioCode.gitignore ####################
2+
3+ .vscode /*
4+ ! .vscode /settings.json
5+ ! .vscode /tasks.json
6+ ! .vscode /launch.json
7+ ! .vscode /extensions.json
8+ ! .vscode /* .code-snippets
9+
10+ # Local History for Visual Studio Code
11+ .history /
12+
13+ # ################### Linux.gitignore ####################
14+
15+ * ~
16+
17+ # temporary files which can be created if a process still has a handle open of a deleted file
18+ .fuse_hidden *
19+
20+ # KDE directory preferences
21+ .directory
22+
23+ # Linux trash folder which might appear on any partition or disk
24+ .Trash- *
25+
26+ # .nfs files are created when an open file is removed but is still being accessed
27+ .nfs *
28+
29+ # ################### Windows.gitignore ####################
30+
31+ # Windows thumbnail cache files
32+ Thumbs.db
33+ Thumbs.db:encryptable
34+ ehthumbs.db
35+ ehthumbs_vista.db
36+
37+ # Dump file
38+ * .stackdump
39+
40+ # Folder config file
41+ [Dd ]esktop.ini
42+
43+ # Recycle Bin used on file shares
44+ $RECYCLE.BIN /
45+
46+ # Windows Installer files
47+ * .cab
48+ * .msi
49+ * .msix
50+ * .msm
51+ * .msp
52+
53+ # Windows shortcuts
54+ * .lnk
55+
56+ # ################### macOS.gitignore ####################
57+
58+ # General
159.DS_Store
2- vendor /
3- composer.lock
4- composer.phar
5- package.tar
6- /packages.json
60+ .AppleDouble
61+ .LSOverride
62+
63+ # Icon must end with two \r
64+ Icon
65+
66+ # Thumbnails
67+ ._ *
68+
69+ # Files that might appear in the root of a volume
70+ .DocumentRevisions-V100
71+ .fseventsd
72+ .Spotlight-V100
73+ .TemporaryItems
74+ .Trashes
75+ .VolumeIcon.icns
76+ .com.apple.timemachine.donotpresent
77+
78+ # Directories potentially created on remote AFP share
79+ .AppleDB
80+ .AppleDesktop
81+ Network Trash Folder
82+ Temporary Items
83+ .apdisk
84+
85+ # ################### Custom.gitignore ####################
86+
87+ ! .gitkeep
You can’t perform that action at this time.
0 commit comments