Skip to content

Commit bdf4e56

Browse files
committed
chore: added more conditions to the gitignore
1 parent f19e0d0 commit bdf4e56

File tree

1 file changed

+227
-0
lines changed

1 file changed

+227
-0
lines changed

.gitignore

Lines changed: 227 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
### Git ###
2+
# Created by git for backups. To disable backups in Git:
3+
# $ git config --global mergetool.keepBackup false
4+
*.orig
5+
6+
# Created by git when using merge tools for conflicts
7+
*.BACKUP.*
8+
*.BASE.*
9+
*.LOCAL.*
10+
*.REMOTE.*
11+
*_BACKUP_*.txt
12+
*_BASE_*.txt
13+
*_LOCAL_*.txt
14+
*_REMOTE_*.txt
15+
16+
### Go ###
117
# Binaries for programs and plugins
218
*.exe
319
*.exe~
@@ -13,3 +29,214 @@
1329

1430
# Dependency directories (remove the comment below to include it)
1531
# vendor/
32+
33+
### Go Patch ###
34+
/vendor/
35+
/Godeps/
36+
37+
### Linux ###
38+
*~
39+
40+
# temporary files which can be created if a process still has a handle open of a deleted file
41+
.fuse_hidden*
42+
43+
# KDE directory preferences
44+
.directory
45+
46+
# Linux trash folder which might appear on any partition or disk
47+
.Trash-*
48+
49+
# .nfs files are created when an open file is removed but is still being accessed
50+
.nfs*
51+
52+
### macOS ###
53+
# General
54+
.DS_Store
55+
.AppleDouble
56+
.LSOverride
57+
58+
# Icon must end with two \r
59+
Icon
60+
61+
# Thumbnails
62+
._*
63+
64+
# Files that might appear in the root of a volume
65+
.DocumentRevisions-V100
66+
.fseventsd
67+
.Spotlight-V100
68+
.TemporaryItems
69+
.Trashes
70+
.VolumeIcon.icns
71+
.com.apple.timemachine.donotpresent
72+
73+
# Directories potentially created on remote AFP share
74+
.AppleDB
75+
.AppleDesktop
76+
Network Trash Folder
77+
Temporary Items
78+
.apdisk
79+
80+
### Node ###
81+
# Logs
82+
logs
83+
*.log
84+
npm-debug.log*
85+
yarn-debug.log*
86+
yarn-error.log*
87+
lerna-debug.log*
88+
89+
# Diagnostic reports (https://nodejs.org/api/report.html)
90+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
91+
92+
# Runtime data
93+
pids
94+
*.pid
95+
*.seed
96+
*.pid.lock
97+
98+
# Directory for instrumented libs generated by jscoverage/JSCover
99+
lib-cov
100+
101+
# Coverage directory used by tools like istanbul
102+
coverage
103+
*.lcov
104+
105+
# nyc test coverage
106+
.nyc_output
107+
108+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
109+
.grunt
110+
111+
# Bower dependency directory (https://bower.io/)
112+
bower_components
113+
114+
# node-waf configuration
115+
.lock-wscript
116+
117+
# Compiled binary addons (https://nodejs.org/api/addons.html)
118+
build/Release
119+
120+
# Dependency directories
121+
node_modules/
122+
jspm_packages/
123+
124+
# TypeScript v1 declaration files
125+
typings/
126+
127+
# TypeScript cache
128+
*.tsbuildinfo
129+
130+
# Optional npm cache directory
131+
.npm
132+
133+
# Optional eslint cache
134+
.eslintcache
135+
136+
# Microbundle cache
137+
.rpt2_cache/
138+
.rts2_cache_cjs/
139+
.rts2_cache_es/
140+
.rts2_cache_umd/
141+
142+
# Optional REPL history
143+
.node_repl_history
144+
145+
# Output of 'npm pack'
146+
*.tgz
147+
148+
# Yarn Integrity file
149+
.yarn-integrity
150+
151+
# dotenv environment variables file
152+
.env
153+
.env.test
154+
155+
# parcel-bundler cache (https://parceljs.org/)
156+
.cache
157+
158+
# Next.js build output
159+
.next
160+
161+
# Nuxt.js build / generate output
162+
.nuxt
163+
dist
164+
165+
# Gatsby files
166+
.cache/
167+
# Comment in the public line in if your project uses Gatsby and not Next.js
168+
# https://nextjs.org/blog/next-9-1#public-directory-support
169+
# public
170+
171+
# vuepress build output
172+
.vuepress/dist
173+
174+
# Serverless directories
175+
.serverless/
176+
177+
# FuseBox cache
178+
.fusebox/
179+
180+
# DynamoDB Local files
181+
.dynamodb/
182+
183+
# TernJS port file
184+
.tern-port
185+
186+
# Stores VSCode versions used for testing VSCode extensions
187+
.vscode-test
188+
.vscode
189+
190+
### react ###
191+
.DS_*
192+
**/*.backup.*
193+
**/*.back.*
194+
195+
node_modules
196+
197+
*.sublime*
198+
199+
psd
200+
thumb
201+
sketch
202+
203+
### VisualStudioCode ###
204+
.vscode/*
205+
!.vscode/settings.json
206+
!.vscode/tasks.json
207+
!.vscode/launch.json
208+
!.vscode/extensions.json
209+
*.code-workspace
210+
211+
### VisualStudioCode Patch ###
212+
# Ignore all local history of files
213+
.history
214+
215+
### Windows ###
216+
# Windows thumbnail cache files
217+
Thumbs.db
218+
Thumbs.db:encryptable
219+
ehthumbs.db
220+
ehthumbs_vista.db
221+
222+
# Dump file
223+
*.stackdump
224+
225+
# Folder config file
226+
[Dd]esktop.ini
227+
228+
# Recycle Bin used on file shares
229+
$RECYCLE.BIN/
230+
231+
# Windows Installer files
232+
*.cab
233+
*.msi
234+
*.msix
235+
*.msm
236+
*.msp
237+
238+
# Windows shortcuts
239+
*.lnk
240+
241+
# Fyne
242+
fyne-cross

0 commit comments

Comments
 (0)