Skip to content

Commit c6d7c04

Browse files
authored
Merge pull request #50 from UlisesGascon/fix/git-ignore
chore: normalized gitignore
2 parents 16ea349 + a4c8b74 commit c6d7c04

File tree

1 file changed

+141
-6
lines changed

1 file changed

+141
-6
lines changed

.gitignore

Lines changed: 141 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,63 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/node,windows,macos,linux,visualstudiocode
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=node,windows,macos,linux,visualstudiocode
3+
4+
### Linux ###
5+
*~
6+
7+
# temporary files which can be created if a process still has a handle open of a deleted file
8+
.fuse_hidden*
9+
10+
# KDE directory preferences
11+
.directory
12+
13+
# Linux trash folder which might appear on any partition or disk
14+
.Trash-*
15+
16+
# .nfs files are created when an open file is removed but is still being accessed
17+
.nfs*
18+
19+
### macOS ###
20+
# General
21+
.DS_Store
22+
.AppleDouble
23+
.LSOverride
24+
25+
# Icon must end with two \r
26+
Icon
27+
28+
29+
# Thumbnails
30+
._*
31+
32+
# Files that might appear in the root of a volume
33+
.DocumentRevisions-V100
34+
.fseventsd
35+
.Spotlight-V100
36+
.TemporaryItems
37+
.Trashes
38+
.VolumeIcon.icns
39+
.com.apple.timemachine.donotpresent
40+
41+
# Directories potentially created on remote AFP share
42+
.AppleDB
43+
.AppleDesktop
44+
Network Trash Folder
45+
Temporary Items
46+
.apdisk
47+
48+
### macOS Patch ###
49+
# iCloud generated files
50+
*.icloud
51+
52+
### Node ###
153
# Logs
254
logs
355
*.log
456
npm-debug.log*
557
yarn-debug.log*
658
yarn-error.log*
759
lerna-debug.log*
60+
.pnpm-debug.log*
861

962
# Diagnostic reports (https://nodejs.org/api/report.html)
1063
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
@@ -41,8 +94,8 @@ build/Release
4194
node_modules/
4295
jspm_packages/
4396

44-
# TypeScript v1 declaration files
45-
typings/
97+
# Snowpack dependency directory (https://snowpack.dev/)
98+
web_modules/
4699

47100
# TypeScript cache
48101
*.tsbuildinfo
@@ -53,6 +106,9 @@ typings/
53106
# Optional eslint cache
54107
.eslintcache
55108

109+
# Optional stylelint cache
110+
.stylelintcache
111+
56112
# Microbundle cache
57113
.rpt2_cache/
58114
.rts2_cache_cjs/
@@ -68,29 +124,40 @@ typings/
68124
# Yarn Integrity file
69125
.yarn-integrity
70126

71-
# dotenv environment variables file
127+
# dotenv environment variable files
72128
.env
73-
.env.test
129+
.env.development.local
130+
.env.test.local
131+
.env.production.local
132+
.env.local
74133

75134
# parcel-bundler cache (https://parceljs.org/)
76135
.cache
136+
.parcel-cache
77137

78138
# Next.js build output
79139
.next
140+
out
80141

81142
# Nuxt.js build / generate output
82143
.nuxt
83-
#dist
144+
dist
84145

85146
# Gatsby files
86147
.cache/
87-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
148+
# Comment in the public line in if your project uses Gatsby and not Next.js
88149
# https://nextjs.org/blog/next-9-1#public-directory-support
89150
# public
90151

91152
# vuepress build output
92153
.vuepress/dist
93154

155+
# vuepress v2.x temp and cache directory
156+
.temp
157+
158+
# Docusaurus cache and generated files
159+
.docusaurus
160+
94161
# Serverless directories
95162
.serverless/
96163

@@ -102,3 +169,71 @@ typings/
102169

103170
# TernJS port file
104171
.tern-port
172+
173+
# Stores VSCode versions used for testing VSCode extensions
174+
.vscode-test
175+
176+
# yarn v2
177+
.yarn/cache
178+
.yarn/unplugged
179+
.yarn/build-state.yml
180+
.yarn/install-state.gz
181+
.pnp.*
182+
183+
### Node Patch ###
184+
# Serverless Webpack directories
185+
.webpack/
186+
187+
# Optional stylelint cache
188+
189+
# SvelteKit build / generate output
190+
.svelte-kit
191+
192+
### VisualStudioCode ###
193+
.vscode/*
194+
!.vscode/settings.json
195+
!.vscode/tasks.json
196+
!.vscode/launch.json
197+
!.vscode/extensions.json
198+
!.vscode/*.code-snippets
199+
200+
# Local History for Visual Studio Code
201+
.history/
202+
203+
# Built Visual Studio Code Extensions
204+
*.vsix
205+
206+
### VisualStudioCode Patch ###
207+
# Ignore all local history of files
208+
.history
209+
.ionide
210+
211+
### Windows ###
212+
# Windows thumbnail cache files
213+
Thumbs.db
214+
Thumbs.db:encryptable
215+
ehthumbs.db
216+
ehthumbs_vista.db
217+
218+
# Dump file
219+
*.stackdump
220+
221+
# Folder config file
222+
[Dd]esktop.ini
223+
224+
# Recycle Bin used on file shares
225+
$RECYCLE.BIN/
226+
227+
# Windows Installer files
228+
*.cab
229+
*.msi
230+
*.msix
231+
*.msm
232+
*.msp
233+
234+
# Windows shortcuts
235+
*.lnk
236+
237+
# End of https://www.toptal.com/developers/gitignore/api/node,windows,macos,linux,visualstudiocode
238+
239+
.vscode/

0 commit comments

Comments
 (0)