1+ # ############################################ MacOS #############################################
2+ # General
3+ .DS_Store
4+ .AppleDouble
5+ .LSOverride
6+
7+ # Icon must end with two \r
8+ Icon
9+
10+ # Thumbnails
11+ ._ *
12+
13+ # Files that might appear in the root of a volume
14+ .DocumentRevisions-V100
15+ .fseventsd
16+ .Spotlight-V100
17+ .TemporaryItems
18+ .Trashes
19+ .VolumeIcon.icns
20+ .com.apple.timemachine.donotpresent
21+
22+ # Directories potentially created on remote AFP share
23+ .AppleDB
24+ .AppleDesktop
25+ Network Trash Folder
26+ Temporary Items
27+ .apdisk
28+
29+ * .local
30+
31+ # ############################################ Visual Studio Code #############################################
32+ .vscode /*
33+ # !.vscode/settings.json
34+ # !.vscode/tasks.json
35+ # !.vscode/launch.json
36+ # !.vscode/extensions.json
37+ # !.vscode/*.code-snippets
38+
39+ # Stores VSCode versions used for testing VSCode extensions
40+ .vscode-test
41+
42+ # Local History for Visual Studio Code
43+ .history /
44+
45+ # Built Visual Studio Code Extensions
46+ * .vsix
47+
48+ # ############################################ Node #############################################
49+ # Logs
50+ logs
51+ * .log
52+ npm-debug.log *
53+ yarn-debug.log *
54+ yarn-error.log *
55+ lerna-debug.log *
56+ .pnpm-debug.log *
57+
58+ # Diagnostic reports (https://nodejs.org/api/report.html)
59+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
60+
61+ # Runtime data
62+ pids
63+ * .pid
64+ * .seed
65+ * .pid.lock
66+
67+ # Directory for instrumented libs generated by jscoverage/JSCover
68+ lib-cov
69+
70+ # Coverage directory used by tools like istanbul
71+ coverage
72+ * .lcov
73+
74+ # nyc test coverage
75+ .nyc_output
76+
77+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
78+ .grunt
79+
80+ # Bower dependency directory (https://bower.io/)
81+ bower_components
82+
83+ # node-waf configuration
84+ .lock-wscript
85+
86+ # Compiled binary addons (https://nodejs.org/api/addons.html)
87+ build /Release
88+
89+ # Dependency directories
90+ node_modules /
91+ jspm_packages /
92+
93+ # Snowpack dependency directory (https://snowpack.dev/)
94+ web_modules /
95+
96+ # TypeScript cache
97+ * .tsbuildinfo
98+
99+ # Optional npm cache directory
100+ .npm
101+
102+ # Optional eslint cache
103+ .eslintcache
104+
105+ # Optional stylelint cache
106+ .stylelintcache
107+
108+ # Microbundle cache
109+ .rpt2_cache /
110+ .rts2_cache_cjs /
111+ .rts2_cache_es /
112+ .rts2_cache_umd /
113+
114+ # Optional REPL history
115+ .node_repl_history
116+
117+ # Output of 'npm pack'
118+ * .tgz
119+
120+ # yarn v2
121+ .yarn /cache
122+ .yarn /unplugged
123+ .yarn /build-state.yml
124+ .yarn /install-state.gz
125+ .pnp. *
126+
127+ # Yarn Integrity file
128+ .yarn-integrity
129+
130+ # dotenv environment variable files
131+ .env
132+ .env.development.local
133+ .env.test.local
134+ .env.production.local
135+ .env.local
136+
137+ # parcel-bundler cache (https://parceljs.org/)
138+ .cache
139+ .parcel-cache
140+
141+ # Next.js build output
142+ .next
143+ out
144+
145+ # Nuxt.js build / generate output
146+ .nuxt
147+
148+ # # dist & build
149+ # dist
150+ # build
151+ dist-ssr
152+
153+ # Gatsby files
154+ .cache /
155+ # Comment in the public line in if your project uses Gatsby and not Next.js
156+ # https://nextjs.org/blog/next-9-1#public-directory-support
157+ # public
158+
159+ # vuepress build output
160+ .vuepress /dist
161+
162+ # vuepress v2.x temp and cache directory
163+ .temp
164+ .cache
165+
166+ # Docusaurus cache and generated files
167+ .docusaurus
168+
169+ # Serverless directories
170+ .serverless /
171+
172+ # FuseBox cache
173+ .fusebox /
174+
175+ # DynamoDB Local files
176+ .dynamodb /
177+
178+ # TernJS port file
179+ .tern-port
180+
181+ # ############################################ other #############################################
182+
183+ certs
184+ certs /
185+ certs /*
186+
187+ sql /
0 commit comments