build: bump volta node version
[benchmarks-js.git] / .gitignore
1
2 # Created by https://www.toptal.com/developers/gitignore/api/node,visualstudiocode,vim,intellij
3 # Edit at https://www.toptal.com/developers/gitignore?templates=node,visualstudiocode,vim,intellij
4
5 ### Intellij ###
6 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
7 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8
9 # User-specific stuff
10 .idea/**/workspace.xml
11 .idea/**/tasks.xml
12 .idea/**/usage.statistics.xml
13 .idea/**/dictionaries
14 .idea/**/shelf
15
16 # Generated files
17 .idea/**/contentModel.xml
18
19 # Sensitive or high-churn files
20 .idea/**/dataSources/
21 .idea/**/dataSources.ids
22 .idea/**/dataSources.local.xml
23 .idea/**/sqlDataSources.xml
24 .idea/**/dynamic.xml
25 .idea/**/uiDesigner.xml
26 .idea/**/dbnavigator.xml
27
28 # Gradle
29 .idea/**/gradle.xml
30 .idea/**/libraries
31
32 # Gradle and Maven with auto-import
33 # When using Gradle or Maven with auto-import, you should exclude module files,
34 # since they will be recreated, and may cause churn. Uncomment if using
35 # auto-import.
36 # .idea/artifacts
37 # .idea/compiler.xml
38 # .idea/jarRepositories.xml
39 # .idea/modules.xml
40 # .idea/*.iml
41 # .idea/modules
42 # *.iml
43 # *.ipr
44
45 # CMake
46 cmake-build-*/
47
48 # Mongo Explorer plugin
49 .idea/**/mongoSettings.xml
50
51 # File-based project format
52 *.iws
53
54 # IntelliJ
55 out/
56
57 # mpeltonen/sbt-idea plugin
58 .idea_modules/
59
60 # JIRA plugin
61 atlassian-ide-plugin.xml
62
63 # Cursive Clojure plugin
64 .idea/replstate.xml
65
66 # Crashlytics plugin (for Android Studio and IntelliJ)
67 com_crashlytics_export_strings.xml
68 crashlytics.properties
69 crashlytics-build.properties
70 fabric.properties
71
72 # Editor-based Rest Client
73 .idea/httpRequests
74
75 # Android studio 3.1+ serialized cache file
76 .idea/caches/build_file_checksums.ser
77
78 ### Intellij Patch ###
79 # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
80
81 # *.iml
82 # modules.xml
83 # .idea/misc.xml
84 # *.ipr
85
86 # Sonarlint plugin
87 # https://plugins.jetbrains.com/plugin/7973-sonarlint
88 .idea/**/sonarlint/
89
90 # SonarQube Plugin
91 # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
92 .idea/**/sonarIssues.xml
93
94 # Markdown Navigator plugin
95 # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
96 .idea/**/markdown-navigator.xml
97 .idea/**/markdown-navigator-enh.xml
98 .idea/**/markdown-navigator/
99
100 # Cache file creation bug
101 # See https://youtrack.jetbrains.com/issue/JBR-2257
102 .idea/$CACHE_FILE$
103
104 # CodeStream plugin
105 # https://plugins.jetbrains.com/plugin/12206-codestream
106 .idea/codestream.xml
107
108 ### Node ###
109 # Logs
110 logs
111 *.log
112 npm-debug.log*
113 yarn-debug.log*
114 yarn-error.log*
115 lerna-debug.log*
116
117 # Diagnostic reports (https://nodejs.org/api/report.html)
118 report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
119
120 # Runtime data
121 pids
122 *.pid
123 *.seed
124 *.pid.lock
125
126 # Directory for instrumented libs generated by jscoverage/JSCover
127 lib-cov
128
129 # Coverage directory used by tools like istanbul
130 coverage
131 *.lcov
132
133 # nyc test coverage
134 .nyc_output
135
136 # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
137 .grunt
138
139 # Bower dependency directory (https://bower.io/)
140 bower_components
141
142 # node-waf configuration
143 .lock-wscript
144
145 # Compiled binary addons (https://nodejs.org/api/addons.html)
146 build/Release
147
148 # Dependency directories
149 node_modules/
150 jspm_packages/
151
152 # TypeScript v1 declaration files
153 typings/
154
155 # TypeScript cache
156 *.tsbuildinfo
157
158 # Optional npm cache directory
159 .npm
160
161 # Optional eslint cache
162 .eslintcache
163
164 # Optional stylelint cache
165 .stylelintcache
166
167 # Microbundle cache
168 .rpt2_cache/
169 .rts2_cache_cjs/
170 .rts2_cache_es/
171 .rts2_cache_umd/
172
173 # Optional REPL history
174 .node_repl_history
175
176 # Output of 'npm pack'
177 *.tgz
178
179 # Yarn Integrity file
180 .yarn-integrity
181
182 # dotenv environment variables file
183 .env
184 .env.test
185 .env*.local
186
187 # parcel-bundler cache (https://parceljs.org/)
188 .cache
189 .parcel-cache
190
191 # Next.js build output
192 .next
193
194 # Nuxt.js build / generate output
195 .nuxt
196 dist
197
198 # Storybook build outputs
199 .out
200 .storybook-out
201 storybook-static
202
203 # rollup.js default build output
204 dist/
205
206 # Gatsby files
207 .cache/
208 # Comment in the public line in if your project uses Gatsby and not Next.js
209 # https://nextjs.org/blog/next-9-1#public-directory-support
210 # public
211
212 # vuepress build output
213 .vuepress/dist
214
215 # Serverless directories
216 .serverless/
217
218 # FuseBox cache
219 .fusebox/
220
221 # DynamoDB Local files
222 .dynamodb/
223
224 # TernJS port file
225 .tern-port
226
227 # Stores VSCode versions used for testing VSCode extensions
228 .vscode-test
229
230 # Temporary folders
231 tmp/
232 temp/
233
234 ### Vim ###
235 # Swap
236 [._]*.s[a-v][a-z]
237 !*.svg # comment out if you don't need vector files
238 [._]*.sw[a-p]
239 [._]s[a-rt-v][a-z]
240 [._]ss[a-gi-z]
241 [._]sw[a-p]
242
243 # Session
244 Session.vim
245 Sessionx.vim
246
247 # Temporary
248 .netrwhist
249 *~
250 # Auto-generated tag files
251 tags
252 # Persistent undo
253 [._]*.un~
254
255 ### VisualStudioCode ###
256 .vscode/*
257 !.vscode/settings.json
258 !.vscode/tasks.json
259 !.vscode/launch.json
260 !.vscode/extensions.json
261 *.code-workspace
262
263 ### VisualStudioCode Patch ###
264 # Ignore all local history of files
265 .history
266 .ionide
267
268 # End of https://www.toptal.com/developers/gitignore/api/node,visualstudiocode,vim,intellij
269
270 # pnpm
271 package-lock.json
272
273 *.orig
274 benchmark/