Skip to content

Commit 31eff0f

Browse files
committed
chore: update gitignore to vidavidorra/[email protected]
1 parent 70c2b95 commit 31eff0f

File tree

1 file changed

+90
-37
lines changed

1 file changed

+90
-37
lines changed

.gitignore

+90-37
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#####################################################
2-
# macOS #
3-
# Source: https://www.gitignore.io #
4-
#####################################################
1+
################################################################################
2+
# macOS
3+
# Source: https://www.gitignore.io
4+
################################################################################
55
# General
66
.DS_Store
77
.AppleDouble
@@ -30,10 +30,10 @@ Temporary Items
3030
.apdisk
3131

3232

33-
#####################################################
34-
# Linux #
35-
# Source: https://www.gitignore.io #
36-
#####################################################
33+
################################################################################
34+
# Linux
35+
# Source: https://www.gitignore.io
36+
################################################################################
3737
*~
3838

3939
# temporary files which can be created if a process still has a handle open of a deleted file
@@ -49,10 +49,10 @@ Temporary Items
4949
.nfs*
5050

5151

52-
#####################################################
53-
# Windows #
54-
# Source: https://www.gitignore.io #
55-
#####################################################
52+
################################################################################
53+
# Windows
54+
# Source: https://www.gitignore.io
55+
################################################################################
5656
# Windows thumbnail cache files
5757
Thumbs.db
5858
Thumbs.db:encryptable
@@ -79,16 +79,17 @@ $RECYCLE.BIN/
7979
*.lnk
8080

8181

82-
#####################################################
83-
# dotenv #
84-
#####################################################
82+
################################################################################
83+
# dotenv
84+
# Source: https://www.gitignore.io
85+
################################################################################
8586
.env
8687

8788

88-
#####################################################
89-
# CMake #
90-
# Source: https://www.gitignore.io #
91-
#####################################################
89+
################################################################################
90+
# CMake
91+
# Source: https://www.gitignore.io
92+
################################################################################
9293
CMakeLists.txt.user
9394
CMakeCache.txt
9495
CMakeFiles
@@ -106,10 +107,10 @@ _deps
106107
*-prefix/
107108

108109

109-
#####################################################
110-
# Node #
111-
# Source: https://www.gitignore.io #
112-
#####################################################
110+
################################################################################
111+
# Node
112+
# Source: https://www.gitignore.io
113+
################################################################################
113114
# Logs
114115
logs
115116
*.log
@@ -165,6 +166,12 @@ typings/
165166
# Optional eslint cache
166167
.eslintcache
167168

169+
# Microbundle cache
170+
.rpt2_cache/
171+
.rts2_cache_cjs/
172+
.rts2_cache_es/
173+
.rts2_cache_umd/
174+
168175
# Optional REPL history
169176
.node_repl_history
170177

@@ -177,18 +184,24 @@ typings/
177184
# dotenv environment variables file
178185
.env
179186
.env.test
187+
.env*.local
180188

181189
# parcel-bundler cache (https://parceljs.org/)
182190
.cache
191+
.parcel-cache
183192

184-
# next.js build output
193+
# Next.js build output
185194
.next
186195

187-
# nuxt.js build output
196+
# Nuxt.js build / generate output
188197
.nuxt
198+
dist
189199

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
192205

193206
# vuepress build output
194207
.vuepress/dist
@@ -202,14 +215,17 @@ public/
202215
# DynamoDB Local files
203216
.dynamodb/
204217

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
207223

208224

209-
#####################################################
210-
# C #
211-
# Source: https://www.gitignore.io #
212-
#####################################################
225+
################################################################################
226+
# C
227+
# Source: https://www.gitignore.io
228+
################################################################################
213229
# Prerequisites
214230
*.d
215231

@@ -264,10 +280,10 @@ Mkfile.old
264280
dkms.conf
265281

266282

267-
#####################################################
268-
# C++ #
269-
# Source: https://www.gitignore.io #
270-
#####################################################
283+
################################################################################
284+
# C++
285+
# Source: https://www.gitignore.io
286+
################################################################################
271287
# Prerequisites
272288
*.d
273289

@@ -300,3 +316,40 @@ dkms.conf
300316
*.exe
301317
*.out
302318
*.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

Comments
 (0)