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