main
text 220 lines 3.7 KB
Raw
1 # Created by https://www.toptal.com/developers/gitignore/api/bazel,node,nextjs,rust,visualstudiocode
2 # Edit at https://www.toptal.com/developers/gitignore?templates=bazel,node,nextjs,rust,visualstudiocode
3
4 ### Bazel ###
5 # gitignore template for Bazel build system
6 # website: https://bazel.build/
7
8 # Ignore all bazel-* symlinks. There is no full list since this can change
9 # based on the name of the directory bazel is cloned into.
10 /bazel-*
11 auth.bazelrc
12
13 # Directories for the Bazel IntelliJ plugin containing the generated
14 # IntelliJ project files and plugin configuration. Seperate directories are
15 # for the IntelliJ, Android Studio and CLion versions of the plugin.
16 /.ijwb/
17 /.aswb/
18 /.clwb/
19
20 ### NextJS ###
21 # dependencies
22 /node_modules
23 /.pnp
24 .pnp.js
25
26 # testing
27 /coverage
28
29 # next.js
30 /.next/
31 /out/
32
33 # misc
34 .DS_Store
35 *.pem
36
37 # debug
38 npm-debug.log*
39 yarn-debug.log*
40 yarn-error.log*
41 .pnpm-debug.log*
42
43 # local env files
44 .env*.local
45
46 # vercel
47 .vercel
48
49 # typescript
50 *.tsbuildinfo
51 next-env.d.ts
52
53 ### Node ###
54 # Logs
55 logs
56 *.log
57 lerna-debug.log*
58
59 # Diagnostic reports (https://nodejs.org/api/report.html)
60 report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
61
62 # Runtime data
63 pids
64 *.pid
65 *.seed
66 *.pid.lock
67
68 # Directory for instrumented libs generated by jscoverage/JSCover
69 lib-cov
70
71 # Coverage directory used by tools like istanbul
72 coverage
73 *.lcov
74
75 # nyc test coverage
76 .nyc_output
77
78 # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
79 .grunt
80
81 # Bower dependency directory (https://bower.io/)
82 bower_components
83
84 # node-waf configuration
85 .lock-wscript
86
87 # Compiled binary addons (https://nodejs.org/api/addons.html)
88 build/Release
89
90 # Dependency directories
91 node_modules/
92 jspm_packages/
93
94 # Snowpack dependency directory (https://snowpack.dev/)
95 web_modules/
96
97 # TypeScript cache
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 Integrity file
121 .yarn-integrity
122
123 # dotenv environment variable files
124 .env
125 .env.development.local
126 .env.test.local
127 .env.production.local
128 .env.local
129
130 # parcel-bundler cache (https://parceljs.org/)
131 .cache
132 .parcel-cache
133
134 # Next.js build output
135 .next
136 out
137
138 # Nuxt.js build / generate output
139 .nuxt
140 dist
141
142 # Gatsby files
143 .cache/
144 # Comment in the public line in if your project uses Gatsby and not Next.js
145 # https://nextjs.org/blog/next-9-1#public-directory-support
146 # public
147
148 # vuepress build output
149 .vuepress/dist
150
151 # vuepress v2.x temp and cache directory
152 .temp
153
154 # Docusaurus cache and generated files
155 .docusaurus
156
157 # Serverless directories
158 .serverless/
159
160 # FuseBox cache
161 .fusebox/
162
163 # DynamoDB Local files
164 .dynamodb/
165
166 # TernJS port file
167 .tern-port
168
169 # Stores VSCode versions used for testing VSCode extensions
170 .vscode-test
171
172 # yarn v2
173 .yarn/cache
174 .yarn/unplugged
175 .yarn/build-state.yml
176 .yarn/install-state.gz
177 .pnp.*
178
179 ### Node Patch ###
180 # Serverless Webpack directories
181 .webpack/
182
183 # Optional stylelint cache
184
185 # SvelteKit build / generate output
186 .svelte-kit
187
188 ### Rust ###
189 # Generated by Cargo
190 # will have compiled files and executables
191 debug/
192 target/
193
194 # These are backup files generated by rustfmt
195 **/*.rs.bk
196
197 # MSVC Windows builds of rustc generate these, which store debugging information
198 *.pdb
199
200 ### VisualStudioCode ###
201 .vscode/*
202 !.vscode/settings.json
203 !.vscode/tasks.json
204 !.vscode/launch.json
205 !.vscode/extensions.json
206 !.vscode/*.code-snippets
207 *.code-workspace
208
209 # Local History for Visual Studio Code
210 .history/
211
212 # Built Visual Studio Code Extensions
213 *.vsix
214
215 ### VisualStudioCode Patch ###
216 # Ignore all local history of files
217 .history
218 .ionide
219
220 # End of https://www.toptal.com/developers/gitignore/api/bazel,node,nextjs,rust,visualstudiocode