Skip to content

Commit 7d8b9d9

Browse files
committed
chore: add gitignore
1 parent ddca6bc commit 7d8b9d9

File tree

1 file changed

+226
-0
lines changed

1 file changed

+226
-0
lines changed

.gitignore

Lines changed: 226 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,226 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/node,macos,linux,visualstudiocode,git
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=node,macos,linux,visualstudiocode,git
3+
4+
### Git ###
5+
# Created by git for backups. To disable backups in Git:
6+
# $ git config --global mergetool.keepBackup false
7+
*.orig
8+
9+
# Created by git when using merge tools for conflicts
10+
*.BACKUP.*
11+
*.BASE.*
12+
*.LOCAL.*
13+
*.REMOTE.*
14+
*_BACKUP_*.txt
15+
*_BASE_*.txt
16+
*_LOCAL_*.txt
17+
*_REMOTE_*.txt
18+
19+
### Linux ###
20+
*~
21+
22+
# temporary files which can be created if a process still has a handle open of a deleted file
23+
.fuse_hidden*
24+
25+
# KDE directory preferences
26+
.directory
27+
28+
# Linux trash folder which might appear on any partition or disk
29+
.Trash-*
30+
31+
# .nfs files are created when an open file is removed but is still being accessed
32+
.nfs*
33+
34+
### macOS ###
35+
# General
36+
.DS_Store
37+
.AppleDouble
38+
.LSOverride
39+
40+
# Icon must end with two \r
41+
Icon
42+
43+
44+
# Thumbnails
45+
._*
46+
47+
# Files that might appear in the root of a volume
48+
.DocumentRevisions-V100
49+
.fseventsd
50+
.Spotlight-V100
51+
.TemporaryItems
52+
.Trashes
53+
.VolumeIcon.icns
54+
.com.apple.timemachine.donotpresent
55+
56+
# Directories potentially created on remote AFP share
57+
.AppleDB
58+
.AppleDesktop
59+
Network Trash Folder
60+
Temporary Items
61+
.apdisk
62+
63+
### macOS Patch ###
64+
# iCloud generated files
65+
*.icloud
66+
67+
### Node ###
68+
# Logs
69+
logs
70+
*.log
71+
npm-debug.log*
72+
yarn-debug.log*
73+
yarn-error.log*
74+
lerna-debug.log*
75+
.pnpm-debug.log*
76+
77+
# Diagnostic reports (https://nodejs.org/api/report.html)
78+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
79+
80+
# Runtime data
81+
pids
82+
*.pid
83+
*.seed
84+
*.pid.lock
85+
86+
# Directory for instrumented libs generated by jscoverage/JSCover
87+
lib-cov
88+
89+
# Coverage directory used by tools like istanbul
90+
coverage
91+
*.lcov
92+
93+
# nyc test coverage
94+
.nyc_output
95+
96+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
97+
.grunt
98+
99+
# Bower dependency directory (https://bower.io/)
100+
bower_components
101+
102+
# node-waf configuration
103+
.lock-wscript
104+
105+
# Compiled binary addons (https://nodejs.org/api/addons.html)
106+
build/Release
107+
108+
# Dependency directories
109+
node_modules/
110+
jspm_packages/
111+
112+
# Snowpack dependency directory (https://snowpack.dev/)
113+
web_modules/
114+
115+
# TypeScript cache
116+
*.tsbuildinfo
117+
118+
# Optional npm cache directory
119+
.npm
120+
121+
# Optional eslint cache
122+
.eslintcache
123+
124+
# Optional stylelint cache
125+
.stylelintcache
126+
127+
# Microbundle cache
128+
.rpt2_cache/
129+
.rts2_cache_cjs/
130+
.rts2_cache_es/
131+
.rts2_cache_umd/
132+
133+
# Optional REPL history
134+
.node_repl_history
135+
136+
# Output of 'npm pack'
137+
*.tgz
138+
139+
# Yarn Integrity file
140+
.yarn-integrity
141+
142+
# dotenv environment variable files
143+
.env
144+
.env.development.local
145+
.env.test.local
146+
.env.production.local
147+
.env.local
148+
149+
# parcel-bundler cache (https://parceljs.org/)
150+
.cache
151+
.parcel-cache
152+
153+
# Next.js build output
154+
.next
155+
out
156+
157+
# Nuxt.js build / generate output
158+
.nuxt
159+
dist
160+
161+
# Gatsby files
162+
.cache/
163+
# Comment in the public line in if your project uses Gatsby and not Next.js
164+
# https://nextjs.org/blog/next-9-1#public-directory-support
165+
# public
166+
167+
# vuepress build output
168+
.vuepress/dist
169+
170+
# vuepress v2.x temp and cache directory
171+
.temp
172+
173+
# Docusaurus cache and generated files
174+
.docusaurus
175+
176+
# Serverless directories
177+
.serverless/
178+
179+
# FuseBox cache
180+
.fusebox/
181+
182+
# DynamoDB Local files
183+
.dynamodb/
184+
185+
# TernJS port file
186+
.tern-port
187+
188+
# Stores VSCode versions used for testing VSCode extensions
189+
.vscode-test
190+
191+
# yarn v2
192+
.yarn/cache
193+
.yarn/unplugged
194+
.yarn/build-state.yml
195+
.yarn/install-state.gz
196+
.pnp.*
197+
198+
### Node Patch ###
199+
# Serverless Webpack directories
200+
.webpack/
201+
202+
# Optional stylelint cache
203+
204+
# SvelteKit build / generate output
205+
.svelte-kit
206+
207+
### VisualStudioCode ###
208+
.vscode/*
209+
!.vscode/settings.json
210+
!.vscode/tasks.json
211+
!.vscode/launch.json
212+
!.vscode/extensions.json
213+
!.vscode/*.code-snippets
214+
215+
# Local History for Visual Studio Code
216+
.history/
217+
218+
# Built Visual Studio Code Extensions
219+
*.vsix
220+
221+
### VisualStudioCode Patch ###
222+
# Ignore all local history of files
223+
.history
224+
.ionide
225+
226+
# End of https://www.toptal.com/developers/gitignore/api/node,macos,linux,visualstudiocode,git

0 commit comments

Comments
 (0)