1
- # ####################################################
2
- # macOS #
3
- # Source: https://www.gitignore.io #
4
- # ####################################################
1
+ # ###############################################################################
2
+ # macOS
3
+ # Source: https://www.gitignore.io
4
+ # ###############################################################################
5
5
# General
6
6
.DS_Store
7
7
.AppleDouble
@@ -30,10 +30,10 @@ Temporary Items
30
30
.apdisk
31
31
32
32
33
- # ####################################################
34
- # Linux #
35
- # Source: https://www.gitignore.io #
36
- # ####################################################
33
+ # ###############################################################################
34
+ # Linux
35
+ # Source: https://www.gitignore.io
36
+ # ###############################################################################
37
37
* ~
38
38
39
39
# temporary files which can be created if a process still has a handle open of a deleted file
@@ -49,10 +49,10 @@ Temporary Items
49
49
.nfs *
50
50
51
51
52
- # ####################################################
53
- # Windows #
54
- # Source: https://www.gitignore.io #
55
- # ####################################################
52
+ # ###############################################################################
53
+ # Windows
54
+ # Source: https://www.gitignore.io
55
+ # ###############################################################################
56
56
# Windows thumbnail cache files
57
57
Thumbs.db
58
58
Thumbs.db:encryptable
@@ -79,16 +79,17 @@ $RECYCLE.BIN/
79
79
* .lnk
80
80
81
81
82
- # ####################################################
83
- # dotenv #
84
- # ####################################################
82
+ # ###############################################################################
83
+ # dotenv
84
+ # Source: https://www.gitignore.io
85
+ # ###############################################################################
85
86
.env
86
87
87
88
88
- # ####################################################
89
- # CMake #
90
- # Source: https://www.gitignore.io #
91
- # ####################################################
89
+ # ###############################################################################
90
+ # CMake
91
+ # Source: https://www.gitignore.io
92
+ # ###############################################################################
92
93
CMakeLists.txt.user
93
94
CMakeCache.txt
94
95
CMakeFiles
@@ -106,10 +107,10 @@ _deps
106
107
* -prefix /
107
108
108
109
109
- # ####################################################
110
- # Node #
111
- # Source: https://www.gitignore.io #
112
- # ####################################################
110
+ # ###############################################################################
111
+ # Node
112
+ # Source: https://www.gitignore.io
113
+ # ###############################################################################
113
114
# Logs
114
115
logs
115
116
* .log
@@ -165,6 +166,12 @@ typings/
165
166
# Optional eslint cache
166
167
.eslintcache
167
168
169
+ # Microbundle cache
170
+ .rpt2_cache /
171
+ .rts2_cache_cjs /
172
+ .rts2_cache_es /
173
+ .rts2_cache_umd /
174
+
168
175
# Optional REPL history
169
176
.node_repl_history
170
177
@@ -177,18 +184,24 @@ typings/
177
184
# dotenv environment variables file
178
185
.env
179
186
.env.test
187
+ .env * .local
180
188
181
189
# parcel-bundler cache (https://parceljs.org/)
182
190
.cache
191
+ .parcel-cache
183
192
184
- # next .js build output
193
+ # Next .js build output
185
194
.next
186
195
187
- # nuxt .js build output
196
+ # Nuxt .js build / generate output
188
197
.nuxt
198
+ dist
189
199
190
- # react / gatsby
191
- public /
200
+ # Gatsby files
201
+ .cache /
202
+ # Comment in the public line in if your project uses Gatsby and not Next.js
203
+ # https://nextjs.org/blog/next-9-1#public-directory-support
204
+ # public
192
205
193
206
# vuepress build output
194
207
.vuepress /dist
@@ -202,14 +215,17 @@ public/
202
215
# DynamoDB Local files
203
216
.dynamodb /
204
217
205
- # Typescript output directories
206
- dist /
218
+ # TernJS port file
219
+ .tern-port
220
+
221
+ # Stores VSCode versions used for testing VSCode extensions
222
+ .vscode-test
207
223
208
224
209
- # ####################################################
210
- # C #
211
- # Source: https://www.gitignore.io #
212
- # ####################################################
225
+ # ###############################################################################
226
+ # C
227
+ # Source: https://www.gitignore.io
228
+ # ###############################################################################
213
229
# Prerequisites
214
230
* .d
215
231
@@ -264,10 +280,10 @@ Mkfile.old
264
280
dkms.conf
265
281
266
282
267
- # ####################################################
268
- # C++ #
269
- # Source: https://www.gitignore.io #
270
- # ####################################################
283
+ # ###############################################################################
284
+ # C++
285
+ # Source: https://www.gitignore.io
286
+ # ###############################################################################
271
287
# Prerequisites
272
288
* .d
273
289
@@ -300,3 +316,40 @@ dkms.conf
300
316
* .exe
301
317
* .out
302
318
* .app
319
+
320
+
321
+ # ###############################################################################
322
+ # Go
323
+ # Source: https://www.gitignore.io
324
+ # ###############################################################################
325
+ # Binaries for programs and plugins
326
+ * .exe
327
+ * .exe~
328
+ * .dll
329
+ * .so
330
+ * .dylib
331
+
332
+ # Test binary, built with `go test -c`
333
+ * .test
334
+
335
+ # Output of the go coverage tool, specifically when used with LiteIDE
336
+ * .out
337
+
338
+ # Dependency directories (remove the comment below to include it)
339
+ # vendor/
340
+
341
+ # ## Go Patch ###
342
+ /vendor /
343
+ /Godeps /
344
+
345
+
346
+ # ###############################################################################
347
+ # Visual Studio Code
348
+ # Source: https://www.gitignore.io
349
+ # ###############################################################################
350
+ .vscode /*
351
+ ! .vscode /settings.json
352
+ ! .vscode /tasks.json
353
+ ! .vscode /launch.json
354
+ ! .vscode /extensions.json
355
+ * .code-workspace
0 commit comments