@noya-app/noya-designsystem 0.1.51 → 0.1.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +10 -13
- package/CHANGELOG.md +17 -0
- package/dist/index.css +1 -1
- package/dist/index.d.mts +307 -12
- package/dist/index.d.ts +307 -12
- package/dist/index.js +3408 -647
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3660 -908
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -9
- package/postcss.config.js +7 -0
- package/src/components/ActionMenu.tsx +8 -3
- package/src/components/Banner.tsx +2 -2
- package/src/components/BaseToolbar.tsx +6 -2
- package/src/components/Breadcrumbs.tsx +32 -2
- package/src/components/Button.tsx +30 -19
- package/src/components/Chip.tsx +3 -0
- package/src/components/ColorSwatch.tsx +42 -0
- package/src/components/ColorSwatchControl.tsx +90 -0
- package/src/components/ContextMenu.tsx +10 -2
- package/src/components/Dialog.tsx +1 -1
- package/src/components/DraggableMenuButton.tsx +17 -30
- package/src/components/DropdownMenu.tsx +7 -0
- package/src/components/FillInputField.tsx +1 -1
- package/src/components/Grid.tsx +11 -4
- package/src/components/GridView.tsx +1 -1
- package/src/components/LabeledField.tsx +4 -1
- package/src/components/List.tsx +12 -7
- package/src/components/ListView.tsx +7 -4
- package/src/components/MediaThumbnail.tsx +44 -10
- package/src/components/Popover.tsx +8 -1
- package/src/components/SegmentedControl.tsx +1 -1
- package/src/components/SelectMenu.tsx +7 -0
- package/src/components/SelectionToolbar.tsx +76 -0
- package/src/components/Switch.tsx +1 -1
- package/src/components/Text.tsx +2 -2
- package/src/components/Toast.tsx +13 -7
- package/src/components/Toolbar.tsx +78 -37
- package/src/components/Tooltip.tsx +11 -2
- package/src/components/catppuccin/fileIcons.ts +2430 -0
- package/src/components/connected-users-menu/ConnectedUsersMenuLayout.tsx +3 -1
- package/src/components/internal/Menu.tsx +6 -5
- package/src/components/internal/MenuViewport.tsx +11 -1
- package/src/components/pipeline/PipelineResultLayout.tsx +18 -0
- package/src/contexts/DialogContext.tsx +20 -5
- package/src/contexts/PortalScopeContext.tsx +48 -0
- package/src/index.css +101 -39
- package/src/index.tsx +4 -0
- package/src/theme/index.ts +6 -1
- package/src/theme/themeUtils.ts +10 -3
- package/src/utils/classNames.ts +3 -2
- package/src/utils/moveTreeItem.ts +4 -4
- package/tsup.config.ts +1 -1
|
@@ -0,0 +1,2430 @@
|
|
|
1
|
+
// (MIT) https://github.com/catppuccin/vscode-icons/blob/9170f26fd312132af22d057ee55229e1ba58ebb6/src/defaults/fileIcons.ts
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Default file icon associations
|
|
5
|
+
* Keys are icon file basenames
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
type FileIcons = Record<
|
|
9
|
+
string,
|
|
10
|
+
{
|
|
11
|
+
languageIds?: Array<string>;
|
|
12
|
+
fileExtensions?: Array<string>;
|
|
13
|
+
fileNames?: Array<string>;
|
|
14
|
+
}
|
|
15
|
+
>;
|
|
16
|
+
|
|
17
|
+
// @keep-sorted
|
|
18
|
+
const fileIcons: FileIcons = {
|
|
19
|
+
"adobe-ae": {
|
|
20
|
+
fileExtensions: ["aep"],
|
|
21
|
+
},
|
|
22
|
+
"adobe-ai": {
|
|
23
|
+
fileExtensions: ["ai"],
|
|
24
|
+
},
|
|
25
|
+
"adobe-id": {
|
|
26
|
+
fileExtensions: ["indd", "indl", "indb"],
|
|
27
|
+
},
|
|
28
|
+
"adobe-ps": {
|
|
29
|
+
fileExtensions: ["psd", "psb"],
|
|
30
|
+
},
|
|
31
|
+
"adobe-xd": {
|
|
32
|
+
fileExtensions: ["xd"],
|
|
33
|
+
},
|
|
34
|
+
adonis: {
|
|
35
|
+
fileNames: [".adonisrc.json", "ace"],
|
|
36
|
+
},
|
|
37
|
+
alex: {
|
|
38
|
+
fileNames: [".alexrc", ".alexrc.yaml", ".alexrc.yml", ".alexrc.js"],
|
|
39
|
+
},
|
|
40
|
+
amber: {
|
|
41
|
+
languageIds: ["amber"],
|
|
42
|
+
fileExtensions: ["ab", "amber"],
|
|
43
|
+
},
|
|
44
|
+
android: {
|
|
45
|
+
fileNames: ["androidmanifest.xml"],
|
|
46
|
+
fileExtensions: ["apk", "smali", "dex"],
|
|
47
|
+
},
|
|
48
|
+
angular: {
|
|
49
|
+
fileExtensions: ["ng-template"],
|
|
50
|
+
fileNames: [
|
|
51
|
+
"angular-cli.json",
|
|
52
|
+
".angular-cli.json",
|
|
53
|
+
"angular.json",
|
|
54
|
+
"ng-package.json",
|
|
55
|
+
],
|
|
56
|
+
},
|
|
57
|
+
"ansible-lint": {
|
|
58
|
+
fileNames: [".ansible-lint", "ansible-lint.yml", "ansible-lint.yaml"],
|
|
59
|
+
},
|
|
60
|
+
antlr: {
|
|
61
|
+
fileExtensions: ["g4"],
|
|
62
|
+
},
|
|
63
|
+
apache: {
|
|
64
|
+
fileNames: ["maven.config", "jvm.config", "pom.xml"],
|
|
65
|
+
fileExtensions: ["thrift"],
|
|
66
|
+
},
|
|
67
|
+
"api-blueprint": {
|
|
68
|
+
fileExtensions: ["apib", "apiblueprint"],
|
|
69
|
+
},
|
|
70
|
+
apollo: {
|
|
71
|
+
fileNames: ["apollo.config.js", "apollo.config.ts"],
|
|
72
|
+
},
|
|
73
|
+
apple: {
|
|
74
|
+
fileNames: [
|
|
75
|
+
".ds_store",
|
|
76
|
+
"apple-app-site-association",
|
|
77
|
+
"apple-developer-merchantid-domain-association",
|
|
78
|
+
],
|
|
79
|
+
},
|
|
80
|
+
asciidoc: {
|
|
81
|
+
fileExtensions: ["adoc", "asciidoc", "asc"],
|
|
82
|
+
},
|
|
83
|
+
assembly: {
|
|
84
|
+
fileExtensions: [
|
|
85
|
+
"asm",
|
|
86
|
+
"a51",
|
|
87
|
+
"inc",
|
|
88
|
+
"nasm",
|
|
89
|
+
"s",
|
|
90
|
+
"ms",
|
|
91
|
+
"agc",
|
|
92
|
+
"ags",
|
|
93
|
+
"aea",
|
|
94
|
+
"argus",
|
|
95
|
+
"mitigus",
|
|
96
|
+
"binsource",
|
|
97
|
+
],
|
|
98
|
+
},
|
|
99
|
+
"astro-config": {
|
|
100
|
+
fileNames: [
|
|
101
|
+
"astro.config.js",
|
|
102
|
+
"astro.config.mjs",
|
|
103
|
+
"astro.config.cjs",
|
|
104
|
+
"astro.config.ts",
|
|
105
|
+
"astro.config.cts",
|
|
106
|
+
"astro.config.mts",
|
|
107
|
+
],
|
|
108
|
+
},
|
|
109
|
+
astro: {
|
|
110
|
+
fileExtensions: ["astro"],
|
|
111
|
+
languageIds: ["astro"],
|
|
112
|
+
},
|
|
113
|
+
audio: {
|
|
114
|
+
fileExtensions: [
|
|
115
|
+
"aac",
|
|
116
|
+
"aiff",
|
|
117
|
+
"alac",
|
|
118
|
+
"flac",
|
|
119
|
+
"m4a",
|
|
120
|
+
"m4p",
|
|
121
|
+
"mogg",
|
|
122
|
+
"mp3",
|
|
123
|
+
"oga",
|
|
124
|
+
"opus",
|
|
125
|
+
"wav",
|
|
126
|
+
"wma",
|
|
127
|
+
"wv",
|
|
128
|
+
],
|
|
129
|
+
},
|
|
130
|
+
autohotkey: {
|
|
131
|
+
fileExtensions: ["ahk"],
|
|
132
|
+
languageIds: ["ahk"],
|
|
133
|
+
},
|
|
134
|
+
"azure-pipelines": {
|
|
135
|
+
fileNames: [
|
|
136
|
+
"azure-pipelines.yml",
|
|
137
|
+
"azure-pipelines.yaml",
|
|
138
|
+
"azure-pipelines-main.yml",
|
|
139
|
+
"azure-pipelines-main.yaml",
|
|
140
|
+
],
|
|
141
|
+
fileExtensions: [
|
|
142
|
+
"azure-pipelines.yml",
|
|
143
|
+
"azure-pipelines.yaml",
|
|
144
|
+
"azure-pipelines-main.yml",
|
|
145
|
+
"azure-pipelines-main.yaml",
|
|
146
|
+
],
|
|
147
|
+
},
|
|
148
|
+
babel: {
|
|
149
|
+
fileNames: [
|
|
150
|
+
".babelrc",
|
|
151
|
+
".babelrc.cjs",
|
|
152
|
+
".babelrc.js",
|
|
153
|
+
".babelrc.mjs",
|
|
154
|
+
".babelrc.json",
|
|
155
|
+
"babel.config.cjs",
|
|
156
|
+
"babel.config.js",
|
|
157
|
+
"babel.config.mjs",
|
|
158
|
+
"babel.config.json",
|
|
159
|
+
"babel-transform.js",
|
|
160
|
+
".babel-plugin-macrosrc",
|
|
161
|
+
".babel-plugin-macrosrc.json",
|
|
162
|
+
".babel-plugin-macrosrc.yaml",
|
|
163
|
+
".babel-plugin-macrosrc.yml",
|
|
164
|
+
".babel-plugin-macrosrc.js",
|
|
165
|
+
"babel-plugin-macros.config.js",
|
|
166
|
+
],
|
|
167
|
+
},
|
|
168
|
+
bash: {
|
|
169
|
+
languageIds: ["awk", "shellscript"],
|
|
170
|
+
fileExtensions: ["sh", "ksh", "csh", "tcsh", "zsh", "bash", "awk", "fish"],
|
|
171
|
+
fileNames: [
|
|
172
|
+
"applypatch-msg",
|
|
173
|
+
"pre-applypatch",
|
|
174
|
+
"post-applypatch",
|
|
175
|
+
"pre-commit",
|
|
176
|
+
"prepare-commit-message",
|
|
177
|
+
"commit-msg",
|
|
178
|
+
"post-commit",
|
|
179
|
+
"pre-rebase",
|
|
180
|
+
"post-checkout",
|
|
181
|
+
"post-merge",
|
|
182
|
+
"pre-receive",
|
|
183
|
+
"update",
|
|
184
|
+
"post-receive",
|
|
185
|
+
"post-update",
|
|
186
|
+
"pre-auto-gc",
|
|
187
|
+
"post-rewrite",
|
|
188
|
+
"pre-push",
|
|
189
|
+
],
|
|
190
|
+
},
|
|
191
|
+
batch: {
|
|
192
|
+
languageIds: ["bat"],
|
|
193
|
+
fileExtensions: ["bat", "cmd"],
|
|
194
|
+
},
|
|
195
|
+
bazel: {
|
|
196
|
+
fileExtensions: ["bzl", "bazel"],
|
|
197
|
+
fileNames: [".bazelrc"],
|
|
198
|
+
},
|
|
199
|
+
benchmark: {
|
|
200
|
+
fileNames: [
|
|
201
|
+
"benchmark.md",
|
|
202
|
+
"benchmark.rst",
|
|
203
|
+
"benchmark.txt",
|
|
204
|
+
"benchmarks.md",
|
|
205
|
+
"benchmarks.rst",
|
|
206
|
+
"benchmarks.txt",
|
|
207
|
+
],
|
|
208
|
+
},
|
|
209
|
+
binary: {
|
|
210
|
+
languageIds: ["code-text-binary"],
|
|
211
|
+
fileExtensions: ["bin"],
|
|
212
|
+
},
|
|
213
|
+
biome: {
|
|
214
|
+
fileNames: ["biome.json", "biome.jsonc"],
|
|
215
|
+
},
|
|
216
|
+
bitbucket: {
|
|
217
|
+
fileNames: ["bitbucket-pipelines.yaml", "bitbucket-pipelines.yml"],
|
|
218
|
+
},
|
|
219
|
+
blitz: {
|
|
220
|
+
fileNames: [
|
|
221
|
+
"blitz.config.js",
|
|
222
|
+
"blitz.config.ts",
|
|
223
|
+
".blitz.config.compiled.js",
|
|
224
|
+
],
|
|
225
|
+
},
|
|
226
|
+
bower: {
|
|
227
|
+
fileNames: [".bowerrc", "bower.json"],
|
|
228
|
+
},
|
|
229
|
+
browserslist: {
|
|
230
|
+
fileNames: ["browserslist", ".browserslistrc"],
|
|
231
|
+
},
|
|
232
|
+
"bun-lock": {
|
|
233
|
+
fileNames: ["bun.lock", "bun.lockb"],
|
|
234
|
+
},
|
|
235
|
+
bun: {
|
|
236
|
+
fileNames: ["bunfig.toml"],
|
|
237
|
+
},
|
|
238
|
+
"c-header": {
|
|
239
|
+
fileExtensions: ["h"],
|
|
240
|
+
},
|
|
241
|
+
c: {
|
|
242
|
+
languageIds: ["c"],
|
|
243
|
+
fileExtensions: ["c", "i", "mi"],
|
|
244
|
+
},
|
|
245
|
+
cabal: {
|
|
246
|
+
fileExtensions: ["cabal"],
|
|
247
|
+
fileNames: ["cabal.project"],
|
|
248
|
+
},
|
|
249
|
+
caddy: {
|
|
250
|
+
fileExtensions: ["caddyfile"],
|
|
251
|
+
fileNames: ["caddyfile"],
|
|
252
|
+
},
|
|
253
|
+
capacitor: {
|
|
254
|
+
fileNames: ["capacitor.config.json", "capacitor.config.ts"],
|
|
255
|
+
},
|
|
256
|
+
"cargo-lock": {
|
|
257
|
+
fileNames: ["cargo.lock"],
|
|
258
|
+
},
|
|
259
|
+
cargo: {
|
|
260
|
+
fileNames: ["cargo.toml"],
|
|
261
|
+
},
|
|
262
|
+
certificate: {
|
|
263
|
+
fileExtensions: ["cer", "cert", "crt", "pfx"],
|
|
264
|
+
},
|
|
265
|
+
changelog: {
|
|
266
|
+
fileNames: [
|
|
267
|
+
"changelog",
|
|
268
|
+
"changelog.md",
|
|
269
|
+
"changelog.rst",
|
|
270
|
+
"changelog.txt",
|
|
271
|
+
"changes",
|
|
272
|
+
"changes.md",
|
|
273
|
+
"changes.rst",
|
|
274
|
+
"changes.txt",
|
|
275
|
+
],
|
|
276
|
+
},
|
|
277
|
+
"circle-ci": {
|
|
278
|
+
fileNames: ["circle.yml"],
|
|
279
|
+
},
|
|
280
|
+
clojure: {
|
|
281
|
+
languageIds: ["clojure"],
|
|
282
|
+
fileExtensions: ["clj", "cljs", "cljc"],
|
|
283
|
+
},
|
|
284
|
+
cmake: {
|
|
285
|
+
fileExtensions: ["cmake"],
|
|
286
|
+
fileNames: ["cmakelists.txt", "cmakecache.txt"],
|
|
287
|
+
},
|
|
288
|
+
cobol: {
|
|
289
|
+
languageIds: ["cobol"],
|
|
290
|
+
fileExtensions: ["cob", "cbl"],
|
|
291
|
+
},
|
|
292
|
+
"code-climate": {
|
|
293
|
+
fileNames: [".codeclimate.yml"],
|
|
294
|
+
},
|
|
295
|
+
"code-of-conduct": {
|
|
296
|
+
fileNames: ["code_of_conduct.md", "code_of_conduct.txt", "code_of_conduct"],
|
|
297
|
+
},
|
|
298
|
+
codeowners: {
|
|
299
|
+
fileNames: ["codeowners", "owners"],
|
|
300
|
+
},
|
|
301
|
+
coffeescript: {
|
|
302
|
+
languageIds: ["coffeescript"],
|
|
303
|
+
fileExtensions: ["coffee", "cson", "iced"],
|
|
304
|
+
},
|
|
305
|
+
commitlint: {
|
|
306
|
+
fileNames: [
|
|
307
|
+
".commitlintrc",
|
|
308
|
+
".commitlintrc.js",
|
|
309
|
+
".commitlintrc.cjs",
|
|
310
|
+
".commitlintrc.ts",
|
|
311
|
+
".commitlintrc.cts",
|
|
312
|
+
".commitlintrc.json",
|
|
313
|
+
".commitlintrc.yaml",
|
|
314
|
+
".commitlintrc.yml",
|
|
315
|
+
".commitlint.yaml",
|
|
316
|
+
".commitlint.yml",
|
|
317
|
+
"commitlint.config.js",
|
|
318
|
+
"commitlint.config.cjs",
|
|
319
|
+
"commitlint.config.ts",
|
|
320
|
+
"commitlint.config.cts",
|
|
321
|
+
],
|
|
322
|
+
},
|
|
323
|
+
contributing: {
|
|
324
|
+
fileNames: [
|
|
325
|
+
"contributing.md",
|
|
326
|
+
"contributing.rst",
|
|
327
|
+
"contributing.txt",
|
|
328
|
+
"contributing",
|
|
329
|
+
],
|
|
330
|
+
},
|
|
331
|
+
"cpp-header": {
|
|
332
|
+
fileExtensions: ["hh", "hpp", "hxx", "h++", "hp", "tcc", "inl"],
|
|
333
|
+
},
|
|
334
|
+
cpp: {
|
|
335
|
+
languageIds: ["cpp"],
|
|
336
|
+
fileExtensions: ["cc", "cpp", "cxx", "c++", "cp", "mii", "ii"],
|
|
337
|
+
},
|
|
338
|
+
csharp: {
|
|
339
|
+
languageIds: ["csharp"],
|
|
340
|
+
fileExtensions: ["cs", "csx", "csharp"],
|
|
341
|
+
},
|
|
342
|
+
cspell: {
|
|
343
|
+
fileNames: [
|
|
344
|
+
"cspell.json",
|
|
345
|
+
"cspell.yml",
|
|
346
|
+
"cspell.yaml",
|
|
347
|
+
".cspell.json",
|
|
348
|
+
".cspell.yml",
|
|
349
|
+
".cspell.yaml",
|
|
350
|
+
"cspell.config.js",
|
|
351
|
+
"cspell.config.cjs",
|
|
352
|
+
"cspell.config.yml",
|
|
353
|
+
"cspell.config.yaml",
|
|
354
|
+
],
|
|
355
|
+
},
|
|
356
|
+
"css-map": {
|
|
357
|
+
fileExtensions: ["css.map"],
|
|
358
|
+
},
|
|
359
|
+
css: {
|
|
360
|
+
languageIds: ["css"],
|
|
361
|
+
fileExtensions: ["css"],
|
|
362
|
+
},
|
|
363
|
+
csv: {
|
|
364
|
+
languageIds: ["csv", "tsv", "psv"],
|
|
365
|
+
fileExtensions: ["csv", "tsv", "psv"],
|
|
366
|
+
},
|
|
367
|
+
cucumber: {
|
|
368
|
+
languageIds: ["cucumber"],
|
|
369
|
+
fileExtensions: ["feature", "features"],
|
|
370
|
+
},
|
|
371
|
+
cuda: {
|
|
372
|
+
languageIds: ["cuda-cpp"],
|
|
373
|
+
fileExtensions: ["cu", "cuh"],
|
|
374
|
+
},
|
|
375
|
+
cypress: {
|
|
376
|
+
fileNames: [
|
|
377
|
+
"cypress.json",
|
|
378
|
+
"cypress.env.json",
|
|
379
|
+
"cypress.config.ts",
|
|
380
|
+
"cypress.config.js",
|
|
381
|
+
"cypress.config.cjs",
|
|
382
|
+
"cypress.config.mjs",
|
|
383
|
+
],
|
|
384
|
+
},
|
|
385
|
+
d: {
|
|
386
|
+
languageIds: ["d"],
|
|
387
|
+
fileExtensions: ["d", "di"],
|
|
388
|
+
},
|
|
389
|
+
"dart-generated": {
|
|
390
|
+
fileExtensions: ["freezed.dart", "g.dart"],
|
|
391
|
+
},
|
|
392
|
+
dart: {
|
|
393
|
+
languageIds: ["dart"],
|
|
394
|
+
fileExtensions: ["dart"],
|
|
395
|
+
},
|
|
396
|
+
database: {
|
|
397
|
+
languageIds: ["sql"],
|
|
398
|
+
fileExtensions: [
|
|
399
|
+
"pdb",
|
|
400
|
+
"sql",
|
|
401
|
+
"pks",
|
|
402
|
+
"pkb",
|
|
403
|
+
"accdb",
|
|
404
|
+
"mdb",
|
|
405
|
+
"sqlite",
|
|
406
|
+
"sqlite3",
|
|
407
|
+
"pgsql",
|
|
408
|
+
"postgres",
|
|
409
|
+
"plpgsql",
|
|
410
|
+
"psql",
|
|
411
|
+
"db",
|
|
412
|
+
"db3",
|
|
413
|
+
"dat",
|
|
414
|
+
],
|
|
415
|
+
},
|
|
416
|
+
deno_lock: {
|
|
417
|
+
fileNames: ["deno.lock"],
|
|
418
|
+
},
|
|
419
|
+
deno: {
|
|
420
|
+
fileNames: ["deno.json", "deno.jsonc"],
|
|
421
|
+
},
|
|
422
|
+
dependabot: {
|
|
423
|
+
fileNames: ["dependabot.yml", "dependabot.yaml"],
|
|
424
|
+
},
|
|
425
|
+
devcontainer: {
|
|
426
|
+
fileNames: ["devcontainer.json", ".devcontainer.json"],
|
|
427
|
+
},
|
|
428
|
+
dhall: {
|
|
429
|
+
languageIds: ["dhall"],
|
|
430
|
+
fileExtensions: ["dhall", "dhallb"],
|
|
431
|
+
},
|
|
432
|
+
diff: {
|
|
433
|
+
languageIds: ["diff"],
|
|
434
|
+
},
|
|
435
|
+
django: {
|
|
436
|
+
languageIds: ["django-html", "django-txt"],
|
|
437
|
+
fileExtensions: ["djt"],
|
|
438
|
+
},
|
|
439
|
+
"docker-compose": {
|
|
440
|
+
fileExtensions: [
|
|
441
|
+
"docker-compose.yml",
|
|
442
|
+
"docker-compose.yaml",
|
|
443
|
+
|
|
444
|
+
"compose.yaml",
|
|
445
|
+
"compose.yml",
|
|
446
|
+
],
|
|
447
|
+
fileNames: [
|
|
448
|
+
"docker-compose.yml",
|
|
449
|
+
"docker-compose.override.yml",
|
|
450
|
+
"docker-compose.prod.yml",
|
|
451
|
+
"docker-compose.production.yml",
|
|
452
|
+
"docker-compose.alpha.yml",
|
|
453
|
+
"docker-compose.beta.yml",
|
|
454
|
+
"docker-compose.stage.yml",
|
|
455
|
+
"docker-compose.staging.yml",
|
|
456
|
+
"docker-compose.dev.yml",
|
|
457
|
+
"docker-compose.development.yml",
|
|
458
|
+
"docker-compose.local.yml",
|
|
459
|
+
"docker-compose.test.yml",
|
|
460
|
+
"docker-compose.testing.yml",
|
|
461
|
+
"docker-compose.ci.yml",
|
|
462
|
+
"docker-compose.web.yml",
|
|
463
|
+
"docker-compose.worker.yml",
|
|
464
|
+
|
|
465
|
+
"docker-compose.yaml",
|
|
466
|
+
"docker-compose.override.yaml",
|
|
467
|
+
"docker-compose.prod.yaml",
|
|
468
|
+
"docker-compose.production.yaml",
|
|
469
|
+
"docker-compose.alpha.yaml",
|
|
470
|
+
"docker-compose.beta.yaml",
|
|
471
|
+
"docker-compose.stage.yaml",
|
|
472
|
+
"docker-compose.staging.yaml",
|
|
473
|
+
"docker-compose.dev.yaml",
|
|
474
|
+
"docker-compose.development.yaml",
|
|
475
|
+
"docker-compose.local.yaml",
|
|
476
|
+
"docker-compose.test.yaml",
|
|
477
|
+
"docker-compose.testing.yaml",
|
|
478
|
+
"docker-compose.ci.yaml",
|
|
479
|
+
"docker-compose.web.yaml",
|
|
480
|
+
"docker-compose.worker.yaml",
|
|
481
|
+
|
|
482
|
+
"compose.yaml",
|
|
483
|
+
"compose.override.yaml",
|
|
484
|
+
"compose.prod.yaml",
|
|
485
|
+
"compose.production.yaml",
|
|
486
|
+
"compose.alpha.yaml",
|
|
487
|
+
"compose.beta.yaml",
|
|
488
|
+
"compose.stage.yaml",
|
|
489
|
+
"compose.staging.yaml",
|
|
490
|
+
"compose.dev.yaml",
|
|
491
|
+
"compose.development.yaml",
|
|
492
|
+
"compose.local.yaml",
|
|
493
|
+
"compose.test.yaml",
|
|
494
|
+
"compose.testing.yaml",
|
|
495
|
+
"compose.ci.yaml",
|
|
496
|
+
"compose.web.yaml",
|
|
497
|
+
"compose.worker.yaml",
|
|
498
|
+
|
|
499
|
+
"compose.yml",
|
|
500
|
+
"compose.override.yml",
|
|
501
|
+
"compose.prod.yml",
|
|
502
|
+
"compose.production.yml",
|
|
503
|
+
"compose.alpha.yml",
|
|
504
|
+
"compose.beta.yml",
|
|
505
|
+
"compose.stage.yml",
|
|
506
|
+
"compose.staging.yml",
|
|
507
|
+
"compose.dev.yml",
|
|
508
|
+
"compose.development.yml",
|
|
509
|
+
"compose.local.yml",
|
|
510
|
+
"compose.test.yml",
|
|
511
|
+
"compose.testing.yml",
|
|
512
|
+
"compose.ci.yml",
|
|
513
|
+
"compose.web.yml",
|
|
514
|
+
"compose.worker.yml",
|
|
515
|
+
],
|
|
516
|
+
},
|
|
517
|
+
"docker-ignore": {
|
|
518
|
+
fileExtensions: ["dockerignore", "containerignore"],
|
|
519
|
+
},
|
|
520
|
+
docker: {
|
|
521
|
+
fileExtensions: ["dockerfile", "containerfile"],
|
|
522
|
+
fileNames: [
|
|
523
|
+
"dockerfile",
|
|
524
|
+
"dockerfile.prod",
|
|
525
|
+
"dockerfile.production",
|
|
526
|
+
"dockerfile.alpha",
|
|
527
|
+
"dockerfile.beta",
|
|
528
|
+
"dockerfile.stage",
|
|
529
|
+
"dockerfile.staging",
|
|
530
|
+
"dockerfile.dev",
|
|
531
|
+
"dockerfile.development",
|
|
532
|
+
"dockerfile.local",
|
|
533
|
+
"dockerfile.test",
|
|
534
|
+
"dockerfile.testing",
|
|
535
|
+
"dockerfile.ci",
|
|
536
|
+
"dockerfile.web",
|
|
537
|
+
"dockerfile.worker",
|
|
538
|
+
|
|
539
|
+
"containerfile",
|
|
540
|
+
"containerfile.prod",
|
|
541
|
+
"containerfile.production",
|
|
542
|
+
"containerfile.alpha",
|
|
543
|
+
"containerfile.beta",
|
|
544
|
+
"containerfile.stage",
|
|
545
|
+
"containerfile.staging",
|
|
546
|
+
"containerfile.dev",
|
|
547
|
+
"containerfile.development",
|
|
548
|
+
"containerfile.local",
|
|
549
|
+
"containerfile.test",
|
|
550
|
+
"containerfile.testing",
|
|
551
|
+
"containerfile.ci",
|
|
552
|
+
"containerfile.web",
|
|
553
|
+
"containerfile.worker",
|
|
554
|
+
],
|
|
555
|
+
},
|
|
556
|
+
drawio: {
|
|
557
|
+
fileExtensions: ["drawio", "dio"],
|
|
558
|
+
},
|
|
559
|
+
"drizzle-orm": {
|
|
560
|
+
fileNames: ["drizzle.config.ts", "drizzle.config.js"],
|
|
561
|
+
},
|
|
562
|
+
"dub-selections": {
|
|
563
|
+
fileNames: ["dub.selections.json"],
|
|
564
|
+
},
|
|
565
|
+
dub: {
|
|
566
|
+
fileNames: ["dub.json", "dub.sdl"],
|
|
567
|
+
},
|
|
568
|
+
editorconfig: {
|
|
569
|
+
languageIds: ["editorconfig"],
|
|
570
|
+
fileNames: [".editorconfig"],
|
|
571
|
+
},
|
|
572
|
+
ejs: {
|
|
573
|
+
fileExtensions: ["ejs"],
|
|
574
|
+
},
|
|
575
|
+
eleventy: {
|
|
576
|
+
fileNames: [
|
|
577
|
+
".eleventy.js",
|
|
578
|
+
"eleventy.config.js",
|
|
579
|
+
"eleventy.config.mjs",
|
|
580
|
+
"eleventy.config.cjs",
|
|
581
|
+
".eleventyignore",
|
|
582
|
+
],
|
|
583
|
+
},
|
|
584
|
+
elixir: {
|
|
585
|
+
languageIds: ["elixir"],
|
|
586
|
+
fileExtensions: ["ex", "exs", "eex", "leex", "heex"],
|
|
587
|
+
},
|
|
588
|
+
elm: {
|
|
589
|
+
languageIds: ["elm"],
|
|
590
|
+
fileExtensions: ["elm"],
|
|
591
|
+
},
|
|
592
|
+
ember: {
|
|
593
|
+
fileNames: [".ember-cli", ".ember-cli.js", "ember-cli-builds.js"],
|
|
594
|
+
},
|
|
595
|
+
env: {
|
|
596
|
+
fileExtensions: ["env"],
|
|
597
|
+
fileNames: [
|
|
598
|
+
".env.defaults",
|
|
599
|
+
".env.example",
|
|
600
|
+
".env.sample",
|
|
601
|
+
".env.template",
|
|
602
|
+
".env.schema",
|
|
603
|
+
".env.local",
|
|
604
|
+
".env.dev",
|
|
605
|
+
".env.development",
|
|
606
|
+
".env.alpha",
|
|
607
|
+
".env.e2e",
|
|
608
|
+
".env.qa",
|
|
609
|
+
".env.dist",
|
|
610
|
+
".env.prod",
|
|
611
|
+
".env.production",
|
|
612
|
+
".env.stage",
|
|
613
|
+
".env.staging",
|
|
614
|
+
".env.preview",
|
|
615
|
+
".env.test",
|
|
616
|
+
".env.testing",
|
|
617
|
+
".env.development.local",
|
|
618
|
+
".env.qa.local",
|
|
619
|
+
".env.production.local",
|
|
620
|
+
".env.staging.local",
|
|
621
|
+
".env.test.local",
|
|
622
|
+
".env.uat",
|
|
623
|
+
".env.cat",
|
|
624
|
+
],
|
|
625
|
+
},
|
|
626
|
+
envrc: {
|
|
627
|
+
fileNames: [".envrc"],
|
|
628
|
+
},
|
|
629
|
+
erlang: {
|
|
630
|
+
languageIds: ["erlang"],
|
|
631
|
+
fileExtensions: ["erl"],
|
|
632
|
+
},
|
|
633
|
+
esbuild: {
|
|
634
|
+
fileNames: [
|
|
635
|
+
"esbuild.js",
|
|
636
|
+
"esbuild.ts",
|
|
637
|
+
"esbuild.cjs",
|
|
638
|
+
"esbuild.mjs",
|
|
639
|
+
"esbuild.config.js",
|
|
640
|
+
"esbuild.config.ts",
|
|
641
|
+
"esbuild.config.cjs",
|
|
642
|
+
"esbuild.config.mjs",
|
|
643
|
+
],
|
|
644
|
+
},
|
|
645
|
+
"eslint-ignore": {
|
|
646
|
+
fileNames: [".eslintignore", ".eslintcache,"],
|
|
647
|
+
},
|
|
648
|
+
eslint: {
|
|
649
|
+
fileNames: [
|
|
650
|
+
".eslintrc.js",
|
|
651
|
+
".eslintrc.cjs",
|
|
652
|
+
".eslintrc.yaml",
|
|
653
|
+
".eslintrc.yml",
|
|
654
|
+
".eslintrc.json",
|
|
655
|
+
".eslintrc-md.js",
|
|
656
|
+
".eslintrc-jsdoc.js",
|
|
657
|
+
".eslintrc",
|
|
658
|
+
|
|
659
|
+
"eslint.config.js",
|
|
660
|
+
"eslint.config.cjs",
|
|
661
|
+
"eslint.config.mjs",
|
|
662
|
+
"eslint.config.ts",
|
|
663
|
+
"eslint.config.cts",
|
|
664
|
+
"eslint.config.mts",
|
|
665
|
+
],
|
|
666
|
+
},
|
|
667
|
+
exe: {
|
|
668
|
+
fileExtensions: ["exe", "msi"],
|
|
669
|
+
},
|
|
670
|
+
fastlane: {
|
|
671
|
+
fileNames: [
|
|
672
|
+
"fastfile",
|
|
673
|
+
"appfile",
|
|
674
|
+
"snapfile",
|
|
675
|
+
"matchfile",
|
|
676
|
+
"deliverfile",
|
|
677
|
+
"scanfile",
|
|
678
|
+
"gymfile",
|
|
679
|
+
],
|
|
680
|
+
},
|
|
681
|
+
favicon: {
|
|
682
|
+
fileNames: ["favicon.ico"],
|
|
683
|
+
},
|
|
684
|
+
figma: {
|
|
685
|
+
fileExtensions: ["fig"],
|
|
686
|
+
},
|
|
687
|
+
firebase: {
|
|
688
|
+
fileNames: [
|
|
689
|
+
"firebase.json",
|
|
690
|
+
".firebaserc",
|
|
691
|
+
"firestore.rules",
|
|
692
|
+
"storage.rules",
|
|
693
|
+
"firestore.indexes.json",
|
|
694
|
+
],
|
|
695
|
+
},
|
|
696
|
+
flutter: {
|
|
697
|
+
fileNames: [
|
|
698
|
+
".flutter-plugins",
|
|
699
|
+
".flutter-plugins-dependencies",
|
|
700
|
+
".metadata",
|
|
701
|
+
],
|
|
702
|
+
},
|
|
703
|
+
font: {
|
|
704
|
+
fileExtensions: [
|
|
705
|
+
"woff",
|
|
706
|
+
"woff2",
|
|
707
|
+
"ttf",
|
|
708
|
+
"eot",
|
|
709
|
+
"suit",
|
|
710
|
+
"otf",
|
|
711
|
+
"bmap",
|
|
712
|
+
"fnt",
|
|
713
|
+
"odttf",
|
|
714
|
+
"ttc",
|
|
715
|
+
"font",
|
|
716
|
+
"fonts",
|
|
717
|
+
"sui",
|
|
718
|
+
"ntf",
|
|
719
|
+
"mrf",
|
|
720
|
+
],
|
|
721
|
+
},
|
|
722
|
+
fortran: {
|
|
723
|
+
fileExtensions: ["f", "f77", "f90", "f95", "f03", "f08", "for"],
|
|
724
|
+
},
|
|
725
|
+
fsharp: {
|
|
726
|
+
languageIds: ["fsharp"],
|
|
727
|
+
fileExtensions: ["fs", "fsx", "fsi", "fsproj"],
|
|
728
|
+
},
|
|
729
|
+
fvm: {
|
|
730
|
+
fileNames: [".fvmrc", "fvm_config.json"],
|
|
731
|
+
},
|
|
732
|
+
gatsby: {
|
|
733
|
+
fileNames: [
|
|
734
|
+
"gatsby-config.js",
|
|
735
|
+
"gatsby-config.mjs",
|
|
736
|
+
"gatsby-config.ts",
|
|
737
|
+
"gatsby-node.js",
|
|
738
|
+
"gatsby-node.mjs",
|
|
739
|
+
"gatsby-node.ts",
|
|
740
|
+
"gatsby-browser.js",
|
|
741
|
+
"gatsby-browser.tsx",
|
|
742
|
+
"gatsby-ssr.js",
|
|
743
|
+
"gatsby-ssr.tsx",
|
|
744
|
+
],
|
|
745
|
+
},
|
|
746
|
+
gcp: {
|
|
747
|
+
fileNames: ["release-please-config.json", ".release-please-manifest.json"],
|
|
748
|
+
},
|
|
749
|
+
"git-cliff": {
|
|
750
|
+
fileNames: ["cliff.toml"],
|
|
751
|
+
},
|
|
752
|
+
git: {
|
|
753
|
+
languageIds: ["git", "git-commit", "git-rebase", "ignore"],
|
|
754
|
+
fileExtensions: ["patch"],
|
|
755
|
+
fileNames: [
|
|
756
|
+
".git",
|
|
757
|
+
".gitignore",
|
|
758
|
+
".gitmessage",
|
|
759
|
+
".gitignore-global",
|
|
760
|
+
".gitignore_global",
|
|
761
|
+
".gitattributes",
|
|
762
|
+
".gitattributes-global",
|
|
763
|
+
".gitattributes_global",
|
|
764
|
+
".gitconfig",
|
|
765
|
+
".gitmodules",
|
|
766
|
+
".gitkeep",
|
|
767
|
+
".keep",
|
|
768
|
+
".gitpreserve",
|
|
769
|
+
".gitinclude",
|
|
770
|
+
".git-blame-ignore",
|
|
771
|
+
".git-blame-ignore-revs",
|
|
772
|
+
".git-for-windows-updater",
|
|
773
|
+
"git-history",
|
|
774
|
+
],
|
|
775
|
+
},
|
|
776
|
+
gitlab: {
|
|
777
|
+
fileExtensions: ["gitlab-ci.yml", "gitlab-ci.yaml"],
|
|
778
|
+
},
|
|
779
|
+
gitpod: {
|
|
780
|
+
fileNames: [".gitpod.yml"],
|
|
781
|
+
},
|
|
782
|
+
"gleam-config": {
|
|
783
|
+
fileNames: ["gleam.toml"],
|
|
784
|
+
},
|
|
785
|
+
gleam: {
|
|
786
|
+
fileExtensions: ["gleam"],
|
|
787
|
+
languageIds: ["gleam"],
|
|
788
|
+
},
|
|
789
|
+
"go-mod": {
|
|
790
|
+
fileNames: ["go.mod", "go.sum", "go.work", "go.work.sum"],
|
|
791
|
+
},
|
|
792
|
+
"go-template": {
|
|
793
|
+
fileExtensions: ["tmpl", "templ", "gotmpl", "gohtml", "go.tmp", "go.html"],
|
|
794
|
+
},
|
|
795
|
+
go: {
|
|
796
|
+
languageIds: ["go"],
|
|
797
|
+
fileExtensions: ["go"],
|
|
798
|
+
},
|
|
799
|
+
"godot-assets": {
|
|
800
|
+
fileExtensions: [
|
|
801
|
+
"godot",
|
|
802
|
+
"tres",
|
|
803
|
+
"tscn",
|
|
804
|
+
"gdns",
|
|
805
|
+
"gdnlib",
|
|
806
|
+
"gdshader",
|
|
807
|
+
"gdshaderinc",
|
|
808
|
+
"gdextension",
|
|
809
|
+
],
|
|
810
|
+
fileNames: [".gdignore", "._sc_", "_sc_"],
|
|
811
|
+
},
|
|
812
|
+
godot: {
|
|
813
|
+
languageIds: ["gdscript"],
|
|
814
|
+
fileExtensions: ["gd"],
|
|
815
|
+
},
|
|
816
|
+
gradle: {
|
|
817
|
+
fileExtensions: ["gradle"],
|
|
818
|
+
fileNames: ["gradle.properties", "gradlew", "gradle-wrapper.properties"],
|
|
819
|
+
},
|
|
820
|
+
graphql: {
|
|
821
|
+
languageIds: ["graphql"],
|
|
822
|
+
fileExtensions: ["graphql", "gql"],
|
|
823
|
+
fileNames: [
|
|
824
|
+
".graphqlconfig",
|
|
825
|
+
".graphqlrc",
|
|
826
|
+
".graphqlrc.json",
|
|
827
|
+
".graphqlrc.js",
|
|
828
|
+
".graphqlrc.cjs",
|
|
829
|
+
".graphqlrc.ts",
|
|
830
|
+
".graphqlrc.toml",
|
|
831
|
+
".graphqlrc.yaml",
|
|
832
|
+
".graphqlrc.yml",
|
|
833
|
+
"graphql.config.json",
|
|
834
|
+
"graphql.config.js",
|
|
835
|
+
"graphql.config.cjs",
|
|
836
|
+
"graphql.config.ts",
|
|
837
|
+
"graphql.config.toml",
|
|
838
|
+
"graphql.config.yaml",
|
|
839
|
+
"graphql.config.yml",
|
|
840
|
+
],
|
|
841
|
+
},
|
|
842
|
+
groovy: {
|
|
843
|
+
languageIds: ["groovy"],
|
|
844
|
+
fileExtensions: ["groovy"],
|
|
845
|
+
},
|
|
846
|
+
gulp: {
|
|
847
|
+
fileNames: [
|
|
848
|
+
"gulpfile.js",
|
|
849
|
+
"gulpfile.mjs",
|
|
850
|
+
"gulpfile.ts",
|
|
851
|
+
"gulpfile.cts",
|
|
852
|
+
"gulpfile.mts",
|
|
853
|
+
"gulpfile.babel.js",
|
|
854
|
+
],
|
|
855
|
+
},
|
|
856
|
+
haml: {
|
|
857
|
+
languageIds: ["haml"],
|
|
858
|
+
fileExtensions: ["haml"],
|
|
859
|
+
},
|
|
860
|
+
handlebars: {
|
|
861
|
+
languageIds: ["handlebars"],
|
|
862
|
+
fileExtensions: ["hbs", "mustache"],
|
|
863
|
+
},
|
|
864
|
+
hardhat: {
|
|
865
|
+
fileNames: ["hardhat.config.js", "hardhat.config.ts"],
|
|
866
|
+
},
|
|
867
|
+
haskell: {
|
|
868
|
+
languageIds: ["haskell"],
|
|
869
|
+
fileExtensions: ["hs"],
|
|
870
|
+
},
|
|
871
|
+
haxe: {
|
|
872
|
+
languageIds: ["haxe", "hxml"],
|
|
873
|
+
fileExtensions: ["hx"],
|
|
874
|
+
},
|
|
875
|
+
helm: {
|
|
876
|
+
fileNames: [".helmignore", "chart.lock"],
|
|
877
|
+
},
|
|
878
|
+
heroku: {
|
|
879
|
+
fileNames: ["procfile"],
|
|
880
|
+
},
|
|
881
|
+
histoire: {
|
|
882
|
+
fileNames: [
|
|
883
|
+
"histoire.config.ts",
|
|
884
|
+
"histoire.config.js",
|
|
885
|
+
".histoire.js",
|
|
886
|
+
".histoire.ts",
|
|
887
|
+
],
|
|
888
|
+
},
|
|
889
|
+
html: {
|
|
890
|
+
languageIds: ["html"],
|
|
891
|
+
fileExtensions: ["htm", "html", "xhtml", "html_vm", "asp"],
|
|
892
|
+
},
|
|
893
|
+
http: {
|
|
894
|
+
fileExtensions: ["http", "rest"],
|
|
895
|
+
fileNames: ["CNAME"],
|
|
896
|
+
},
|
|
897
|
+
huff: {
|
|
898
|
+
fileExtensions: ["huff"],
|
|
899
|
+
},
|
|
900
|
+
hugo: {
|
|
901
|
+
fileNames: ["hugo.toml", "hugo.yaml", "hugo.json"],
|
|
902
|
+
},
|
|
903
|
+
humans: {
|
|
904
|
+
fileNames: ["humans.txt"],
|
|
905
|
+
},
|
|
906
|
+
husky: {
|
|
907
|
+
fileNames: [
|
|
908
|
+
".huskyrc",
|
|
909
|
+
"husky.config.js",
|
|
910
|
+
".huskyrc.json",
|
|
911
|
+
".huskyrc.js",
|
|
912
|
+
".huskyrc.yaml",
|
|
913
|
+
".huskyrc.yml",
|
|
914
|
+
],
|
|
915
|
+
},
|
|
916
|
+
image: {
|
|
917
|
+
fileExtensions: [
|
|
918
|
+
"png",
|
|
919
|
+
"jpeg",
|
|
920
|
+
"jpg",
|
|
921
|
+
"gif",
|
|
922
|
+
"ico",
|
|
923
|
+
"tif",
|
|
924
|
+
"tiff",
|
|
925
|
+
"psd",
|
|
926
|
+
"psb",
|
|
927
|
+
"ami",
|
|
928
|
+
"apx",
|
|
929
|
+
"avif",
|
|
930
|
+
"bmp",
|
|
931
|
+
"bpg",
|
|
932
|
+
"brk",
|
|
933
|
+
"cur",
|
|
934
|
+
"dds",
|
|
935
|
+
"dng",
|
|
936
|
+
"exr",
|
|
937
|
+
"fpx",
|
|
938
|
+
"gbr",
|
|
939
|
+
"img",
|
|
940
|
+
"jbig2",
|
|
941
|
+
"jb2",
|
|
942
|
+
"jng",
|
|
943
|
+
"jxr",
|
|
944
|
+
"pgf",
|
|
945
|
+
"pic",
|
|
946
|
+
"raw",
|
|
947
|
+
"webp",
|
|
948
|
+
"eps",
|
|
949
|
+
"afphoto",
|
|
950
|
+
"ase",
|
|
951
|
+
"aseprite",
|
|
952
|
+
"clip",
|
|
953
|
+
"cpt",
|
|
954
|
+
"heif",
|
|
955
|
+
"heic",
|
|
956
|
+
"kra",
|
|
957
|
+
"mdp",
|
|
958
|
+
"ora",
|
|
959
|
+
"pdn",
|
|
960
|
+
"reb",
|
|
961
|
+
"sai",
|
|
962
|
+
"tga",
|
|
963
|
+
"xcf",
|
|
964
|
+
"jfif",
|
|
965
|
+
"ppm",
|
|
966
|
+
"pbm",
|
|
967
|
+
"pgm",
|
|
968
|
+
"pnm",
|
|
969
|
+
"icns",
|
|
970
|
+
],
|
|
971
|
+
},
|
|
972
|
+
ionic: {
|
|
973
|
+
fileNames: ["ionic.config.json", ".io-config.json"],
|
|
974
|
+
},
|
|
975
|
+
"java-class": {
|
|
976
|
+
fileExtensions: ["class"],
|
|
977
|
+
},
|
|
978
|
+
"java-jar": {
|
|
979
|
+
fileExtensions: ["jar"],
|
|
980
|
+
},
|
|
981
|
+
java: {
|
|
982
|
+
languageIds: ["java"],
|
|
983
|
+
fileExtensions: ["java", "jsp"],
|
|
984
|
+
},
|
|
985
|
+
"javascript-config": {
|
|
986
|
+
fileNames: ["jsconfig.json"],
|
|
987
|
+
fileExtensions: ["jsconfig.json"],
|
|
988
|
+
},
|
|
989
|
+
"javascript-map": {
|
|
990
|
+
fileExtensions: ["js.map", "mjs.map", "cjs.map"],
|
|
991
|
+
},
|
|
992
|
+
"javascript-react": {
|
|
993
|
+
languageIds: ["javascriptreact"],
|
|
994
|
+
fileExtensions: ["jsx"],
|
|
995
|
+
},
|
|
996
|
+
"javascript-test": {
|
|
997
|
+
fileExtensions: [
|
|
998
|
+
"spec.js",
|
|
999
|
+
"spec.cjs",
|
|
1000
|
+
"spec.mjs",
|
|
1001
|
+
"e2e-spec.js",
|
|
1002
|
+
"e2e-spec.cjs",
|
|
1003
|
+
"e2e-spec.mjs",
|
|
1004
|
+
"test.js",
|
|
1005
|
+
"test.cjs",
|
|
1006
|
+
"test.mjs",
|
|
1007
|
+
"js.snap",
|
|
1008
|
+
"cy.js",
|
|
1009
|
+
|
|
1010
|
+
"spec.jsx",
|
|
1011
|
+
"test.jsx",
|
|
1012
|
+
"jsx.snap",
|
|
1013
|
+
"cy.jsx",
|
|
1014
|
+
],
|
|
1015
|
+
},
|
|
1016
|
+
javascript: {
|
|
1017
|
+
languageIds: ["javascript"],
|
|
1018
|
+
fileExtensions: ["esx", "js", "cjs", "mjs"],
|
|
1019
|
+
},
|
|
1020
|
+
jest: {
|
|
1021
|
+
fileNames: [
|
|
1022
|
+
"jest.config.js",
|
|
1023
|
+
"jest.config.cjs",
|
|
1024
|
+
"jest.config.mjs",
|
|
1025
|
+
"jest.config.ts",
|
|
1026
|
+
"jest.config.cts",
|
|
1027
|
+
"jest.config.mts",
|
|
1028
|
+
"jest.config.json",
|
|
1029
|
+
"jest.e2e.config.js",
|
|
1030
|
+
"jest.e2e.config.cjs",
|
|
1031
|
+
"jest.e2e.config.mjs",
|
|
1032
|
+
"jest.e2e.config.ts",
|
|
1033
|
+
"jest.e2e.config.cts",
|
|
1034
|
+
"jest.e2e.config.mts",
|
|
1035
|
+
"jest.e2e.config.json",
|
|
1036
|
+
"jest.e2e.json",
|
|
1037
|
+
"jest-unit.config.js",
|
|
1038
|
+
"jest-e2e.config.js",
|
|
1039
|
+
"jest-e2e.config.cjs",
|
|
1040
|
+
"jest-e2e.config.mjs",
|
|
1041
|
+
"jest-e2e.config.ts",
|
|
1042
|
+
"jest-e2e.config.cts",
|
|
1043
|
+
"jest-e2e.config.mts",
|
|
1044
|
+
"jest-e2e.config.json",
|
|
1045
|
+
"jest-e2e.json",
|
|
1046
|
+
"jest-github-actions-reporter.js",
|
|
1047
|
+
"jest.setup.js",
|
|
1048
|
+
"jest.setup.ts",
|
|
1049
|
+
"jest.json",
|
|
1050
|
+
".jestrc",
|
|
1051
|
+
".jestrc.js",
|
|
1052
|
+
".jestrc.json",
|
|
1053
|
+
"jest.teardown.js",
|
|
1054
|
+
"jest-preset.json",
|
|
1055
|
+
"jest-preset.js",
|
|
1056
|
+
"jest-preset.cjs",
|
|
1057
|
+
"jest-preset.mjs",
|
|
1058
|
+
"jest.preset.js",
|
|
1059
|
+
"jest.preset.mjs",
|
|
1060
|
+
"jest.preset.cjs",
|
|
1061
|
+
"jest.preset.json",
|
|
1062
|
+
],
|
|
1063
|
+
},
|
|
1064
|
+
jinja: {
|
|
1065
|
+
languageIds: ["jinja"],
|
|
1066
|
+
fileExtensions: ["jinja", "jinja2", "j2", "jinja-html"],
|
|
1067
|
+
},
|
|
1068
|
+
"json-schema": {
|
|
1069
|
+
fileExtensions: ["schema.json"],
|
|
1070
|
+
},
|
|
1071
|
+
json: {
|
|
1072
|
+
languageIds: ["hjson"],
|
|
1073
|
+
fileExtensions: [
|
|
1074
|
+
"json",
|
|
1075
|
+
"jsonc",
|
|
1076
|
+
"tsbuildinfo",
|
|
1077
|
+
"json5",
|
|
1078
|
+
"jsonl",
|
|
1079
|
+
"ndjson",
|
|
1080
|
+
"hjson",
|
|
1081
|
+
"webmanifest",
|
|
1082
|
+
],
|
|
1083
|
+
fileNames: [
|
|
1084
|
+
".jscsrc",
|
|
1085
|
+
".jshintrc",
|
|
1086
|
+
"composer.lock",
|
|
1087
|
+
".jsbeautifyrc",
|
|
1088
|
+
".esformatter",
|
|
1089
|
+
"cdp.pid",
|
|
1090
|
+
".lintstagedrc",
|
|
1091
|
+
".whitesource",
|
|
1092
|
+
],
|
|
1093
|
+
},
|
|
1094
|
+
juce: {
|
|
1095
|
+
fileExtensions: ["jucer"],
|
|
1096
|
+
},
|
|
1097
|
+
julia: {
|
|
1098
|
+
languageIds: ["julia"],
|
|
1099
|
+
fileExtensions: ["jl"],
|
|
1100
|
+
},
|
|
1101
|
+
jupyter: {
|
|
1102
|
+
languageIds: ["jupyter"],
|
|
1103
|
+
fileExtensions: ["ipynb"],
|
|
1104
|
+
},
|
|
1105
|
+
just: {
|
|
1106
|
+
fileExtensions: ["just"],
|
|
1107
|
+
fileNames: ["justfile", ".justfile"],
|
|
1108
|
+
},
|
|
1109
|
+
kdl: {
|
|
1110
|
+
languageIds: ["kdl"],
|
|
1111
|
+
fileExtensions: ["kdl"],
|
|
1112
|
+
},
|
|
1113
|
+
key: {
|
|
1114
|
+
fileExtensions: ["pub", "key", "pem", "asc", "gpg", "passwd", "keystore"],
|
|
1115
|
+
fileNames: [".htpasswd"],
|
|
1116
|
+
},
|
|
1117
|
+
kotlin: {
|
|
1118
|
+
fileExtensions: ["kt", "kts"],
|
|
1119
|
+
},
|
|
1120
|
+
laravel: {
|
|
1121
|
+
fileExtensions: ["blade.php", "inky.php"],
|
|
1122
|
+
fileNames: ["artisan"],
|
|
1123
|
+
},
|
|
1124
|
+
latex: {
|
|
1125
|
+
languageIds: ["tex", "doctex", "latex", "latex-expl3"],
|
|
1126
|
+
fileExtensions: ["tex", "sty", "dtx", "ltx"],
|
|
1127
|
+
},
|
|
1128
|
+
latte: {
|
|
1129
|
+
fileExtensions: ["latte"],
|
|
1130
|
+
},
|
|
1131
|
+
lerna: {
|
|
1132
|
+
fileNames: ["lerna.json"],
|
|
1133
|
+
},
|
|
1134
|
+
less: {
|
|
1135
|
+
languageIds: ["less"],
|
|
1136
|
+
fileExtensions: ["less"],
|
|
1137
|
+
},
|
|
1138
|
+
lib: {
|
|
1139
|
+
languageIds: ["bibtex", "bibtex-style"],
|
|
1140
|
+
fileExtensions: ["lib", "bib"],
|
|
1141
|
+
},
|
|
1142
|
+
license: {
|
|
1143
|
+
fileNames: [
|
|
1144
|
+
"copying",
|
|
1145
|
+
"copying.md",
|
|
1146
|
+
"copying.rst",
|
|
1147
|
+
"copying.txt",
|
|
1148
|
+
"copyright",
|
|
1149
|
+
"copyright.md",
|
|
1150
|
+
"copyright.rst",
|
|
1151
|
+
"copyright.txt",
|
|
1152
|
+
"license",
|
|
1153
|
+
"license-agpl",
|
|
1154
|
+
"license-apache",
|
|
1155
|
+
"license-bsd",
|
|
1156
|
+
"license-mit",
|
|
1157
|
+
"license-gpl",
|
|
1158
|
+
"license-lgpl",
|
|
1159
|
+
"unlicense",
|
|
1160
|
+
"license.md",
|
|
1161
|
+
"license.rst",
|
|
1162
|
+
"license.txt",
|
|
1163
|
+
"licence",
|
|
1164
|
+
"licence-agpl",
|
|
1165
|
+
"licence-apache",
|
|
1166
|
+
"licence-bsd",
|
|
1167
|
+
"licence-mit",
|
|
1168
|
+
"licence-gpl",
|
|
1169
|
+
"licence-lgpl",
|
|
1170
|
+
"unlicence",
|
|
1171
|
+
"licence.md",
|
|
1172
|
+
"licence.rst",
|
|
1173
|
+
"licence.txt",
|
|
1174
|
+
],
|
|
1175
|
+
},
|
|
1176
|
+
"lint-staged": {
|
|
1177
|
+
fileNames: [
|
|
1178
|
+
".lintstagedrc",
|
|
1179
|
+
".lintstagedrc.json",
|
|
1180
|
+
".lintstagedrc.yaml",
|
|
1181
|
+
".lintstagedrc.yml",
|
|
1182
|
+
".lintstagedrc.mjs",
|
|
1183
|
+
".lintstagedrc.cjs",
|
|
1184
|
+
".lintstagedrc.js",
|
|
1185
|
+
"lint-staged.config.js",
|
|
1186
|
+
"lint-staged.config.mjs",
|
|
1187
|
+
"lint-staged.config.cjs",
|
|
1188
|
+
],
|
|
1189
|
+
},
|
|
1190
|
+
liquid: {
|
|
1191
|
+
fileExtensions: ["liquid"],
|
|
1192
|
+
fileNames: [".liquidrc.json", ".liquidrc"],
|
|
1193
|
+
languageIds: ["liquid"],
|
|
1194
|
+
},
|
|
1195
|
+
lisp: {
|
|
1196
|
+
fileExtensions: ["lisp", "lsp", "cl", "fast"],
|
|
1197
|
+
},
|
|
1198
|
+
log: {
|
|
1199
|
+
languageIds: ["log"],
|
|
1200
|
+
fileExtensions: ["log"],
|
|
1201
|
+
},
|
|
1202
|
+
lua: {
|
|
1203
|
+
languageIds: ["lua"],
|
|
1204
|
+
fileExtensions: ["lua"],
|
|
1205
|
+
fileNames: [".luacheckrc"],
|
|
1206
|
+
},
|
|
1207
|
+
luau: {
|
|
1208
|
+
fileExtensions: ["luau"],
|
|
1209
|
+
fileNames: [".luaurc"],
|
|
1210
|
+
},
|
|
1211
|
+
makefile: {
|
|
1212
|
+
languageIds: ["makefile"],
|
|
1213
|
+
fileExtensions: ["mk"],
|
|
1214
|
+
fileNames: ["makefile", "gnumakefile", "kbuild"],
|
|
1215
|
+
},
|
|
1216
|
+
"markdown-mdx": {
|
|
1217
|
+
fileExtensions: ["mdx"],
|
|
1218
|
+
},
|
|
1219
|
+
markdown: {
|
|
1220
|
+
languageIds: ["markdown"],
|
|
1221
|
+
fileExtensions: ["md", "markdown", "rst"],
|
|
1222
|
+
},
|
|
1223
|
+
marko: {
|
|
1224
|
+
fileExtensions: ["marko"],
|
|
1225
|
+
},
|
|
1226
|
+
matlab: {
|
|
1227
|
+
languageIds: ["matlab"],
|
|
1228
|
+
},
|
|
1229
|
+
mdbook: {
|
|
1230
|
+
fileNames: ["book.toml"],
|
|
1231
|
+
},
|
|
1232
|
+
mermaid: {
|
|
1233
|
+
fileExtensions: ["mmd", "mermaid"],
|
|
1234
|
+
},
|
|
1235
|
+
meson: {
|
|
1236
|
+
fileNames: ["meson.build", "meson_options.txt"],
|
|
1237
|
+
fileExtensions: ["wrap"],
|
|
1238
|
+
},
|
|
1239
|
+
midi: {
|
|
1240
|
+
fileNames: ["mid", "midi"],
|
|
1241
|
+
},
|
|
1242
|
+
mjml: {
|
|
1243
|
+
fileExtensions: ["mjml"],
|
|
1244
|
+
fileNames: [".mjmlconfig"],
|
|
1245
|
+
},
|
|
1246
|
+
modernizr: {
|
|
1247
|
+
fileNames: [".modernizrrc", ".modernizrrc.js", ".modernizrrc.json"],
|
|
1248
|
+
},
|
|
1249
|
+
"ms-excel": {
|
|
1250
|
+
fileExtensions: ["xlsx", "xlsm", "xls"],
|
|
1251
|
+
},
|
|
1252
|
+
"ms-powerpoint": {
|
|
1253
|
+
fileExtensions: [
|
|
1254
|
+
"pptx",
|
|
1255
|
+
"ppt",
|
|
1256
|
+
"pptm",
|
|
1257
|
+
"potx",
|
|
1258
|
+
"potm",
|
|
1259
|
+
"ppsx",
|
|
1260
|
+
"ppsm",
|
|
1261
|
+
"pps",
|
|
1262
|
+
"ppam",
|
|
1263
|
+
"ppa",
|
|
1264
|
+
"odp",
|
|
1265
|
+
],
|
|
1266
|
+
},
|
|
1267
|
+
"ms-word": {
|
|
1268
|
+
fileExtensions: ["doc", "docx", "rtf", "odt"],
|
|
1269
|
+
},
|
|
1270
|
+
nativescript: {
|
|
1271
|
+
fileNames: ["nativescript.config.ts", "nativescript.config.js"],
|
|
1272
|
+
},
|
|
1273
|
+
nest: {
|
|
1274
|
+
fileNames: [
|
|
1275
|
+
"nest-cli.json",
|
|
1276
|
+
".nest-cli.json",
|
|
1277
|
+
"nestconfig.json",
|
|
1278
|
+
".nestconfig.json",
|
|
1279
|
+
],
|
|
1280
|
+
},
|
|
1281
|
+
netlify: {
|
|
1282
|
+
fileNames: ["netlify.json", "netlify.yml", "netlify.yaml", "netlify.toml"],
|
|
1283
|
+
},
|
|
1284
|
+
next: {
|
|
1285
|
+
fileNames: [
|
|
1286
|
+
"next.config.js",
|
|
1287
|
+
"next.config.mjs",
|
|
1288
|
+
"next.config.ts",
|
|
1289
|
+
"next.config.mts",
|
|
1290
|
+
],
|
|
1291
|
+
},
|
|
1292
|
+
nextflow: {
|
|
1293
|
+
fileExtensions: ["nf"],
|
|
1294
|
+
},
|
|
1295
|
+
nginx: {
|
|
1296
|
+
fileNames: ["nginx.conf"],
|
|
1297
|
+
fileExtensions: ["nginx", "nginxconf", "nginxconfig"],
|
|
1298
|
+
},
|
|
1299
|
+
nim: {
|
|
1300
|
+
languageIds: ["nim", "nimble"],
|
|
1301
|
+
fileExtensions: ["nim", "nimble"],
|
|
1302
|
+
},
|
|
1303
|
+
ninja: {
|
|
1304
|
+
fileExtensions: ["ninja"],
|
|
1305
|
+
},
|
|
1306
|
+
"nix-lock": {
|
|
1307
|
+
fileNames: ["flake.lock"],
|
|
1308
|
+
},
|
|
1309
|
+
nix: {
|
|
1310
|
+
languageIds: ["nix"],
|
|
1311
|
+
fileExtensions: ["nix"],
|
|
1312
|
+
},
|
|
1313
|
+
nodemon: {
|
|
1314
|
+
fileNames: ["nodemon.json", "nodemon-debug.json"],
|
|
1315
|
+
},
|
|
1316
|
+
"npm-ignore": {
|
|
1317
|
+
fileNames: [".npmignore"],
|
|
1318
|
+
},
|
|
1319
|
+
"npm-lock": {
|
|
1320
|
+
fileNames: ["package-lock.json"],
|
|
1321
|
+
},
|
|
1322
|
+
npm: {
|
|
1323
|
+
fileNames: [".npmrc"],
|
|
1324
|
+
},
|
|
1325
|
+
nuget: {
|
|
1326
|
+
fileNames: ["nuget.config", ".nuspec", "nuget.exe"],
|
|
1327
|
+
fileExtensions: ["nupkg"],
|
|
1328
|
+
},
|
|
1329
|
+
nunjucks: {
|
|
1330
|
+
languageIds: ["nunjucks"],
|
|
1331
|
+
fileExtensions: ["njk", "nunjucks"],
|
|
1332
|
+
},
|
|
1333
|
+
"nuxt-ignore": {
|
|
1334
|
+
fileNames: [".nuxtignore"],
|
|
1335
|
+
},
|
|
1336
|
+
nuxt: {
|
|
1337
|
+
fileNames: [".nuxtrc", "nuxt.config.js", "nuxt.config.ts"],
|
|
1338
|
+
},
|
|
1339
|
+
ocaml: {
|
|
1340
|
+
fileExtensions: ["ml", "mli", "cmx"],
|
|
1341
|
+
},
|
|
1342
|
+
org: {
|
|
1343
|
+
languageIds: ["org"],
|
|
1344
|
+
fileExtensions: ["org"],
|
|
1345
|
+
},
|
|
1346
|
+
"package-json": {
|
|
1347
|
+
fileNames: ["package.json", ".nvmrc", ".esmrc", ".node-version"],
|
|
1348
|
+
},
|
|
1349
|
+
"panda-css": {
|
|
1350
|
+
fileNames: [
|
|
1351
|
+
"panda.config.ts",
|
|
1352
|
+
"panda.config.js",
|
|
1353
|
+
"panda.config.mjs",
|
|
1354
|
+
"panda.config.mts",
|
|
1355
|
+
"panda.config.cjs",
|
|
1356
|
+
],
|
|
1357
|
+
},
|
|
1358
|
+
pdf: {
|
|
1359
|
+
fileExtensions: ["pdf"],
|
|
1360
|
+
},
|
|
1361
|
+
perl: {
|
|
1362
|
+
languageIds: ["perl", "perl6", "raku"],
|
|
1363
|
+
fileExtensions: [
|
|
1364
|
+
"pl",
|
|
1365
|
+
"pm",
|
|
1366
|
+
"pod",
|
|
1367
|
+
"t",
|
|
1368
|
+
"psgi",
|
|
1369
|
+
"raku",
|
|
1370
|
+
"rakumod",
|
|
1371
|
+
"rakutest",
|
|
1372
|
+
"rakudoc",
|
|
1373
|
+
"nqp",
|
|
1374
|
+
"p6",
|
|
1375
|
+
"pl6",
|
|
1376
|
+
"pm6",
|
|
1377
|
+
],
|
|
1378
|
+
},
|
|
1379
|
+
php: {
|
|
1380
|
+
languageIds: ["php"],
|
|
1381
|
+
fileExtensions: ["php"],
|
|
1382
|
+
},
|
|
1383
|
+
phrase: {
|
|
1384
|
+
fileNames: [
|
|
1385
|
+
".phrase.yml",
|
|
1386
|
+
".phraseapp.yml",
|
|
1387
|
+
".phrase.yaml",
|
|
1388
|
+
".phraseapp.yaml",
|
|
1389
|
+
],
|
|
1390
|
+
},
|
|
1391
|
+
phtml: {
|
|
1392
|
+
fileExtensions: ["phtml"],
|
|
1393
|
+
},
|
|
1394
|
+
"pixi-lock": {
|
|
1395
|
+
fileNames: ["pixi.lock"],
|
|
1396
|
+
},
|
|
1397
|
+
pixi: {
|
|
1398
|
+
fileNames: ["pixi.toml"],
|
|
1399
|
+
},
|
|
1400
|
+
plantuml: {
|
|
1401
|
+
fileExtensions: ["pu", "puml", "plantuml"],
|
|
1402
|
+
},
|
|
1403
|
+
playwright: {
|
|
1404
|
+
fileNames: [
|
|
1405
|
+
"playwright.config.js",
|
|
1406
|
+
"playwright.config.mjs",
|
|
1407
|
+
"playwright.config.ts",
|
|
1408
|
+
"playwright.config.base.js",
|
|
1409
|
+
"playwright.config.base.mjs",
|
|
1410
|
+
"playwright.config.base.ts",
|
|
1411
|
+
"playwright-ct.config.js",
|
|
1412
|
+
"playwright-ct.config.mjs",
|
|
1413
|
+
"playwright-ct.config.ts",
|
|
1414
|
+
],
|
|
1415
|
+
},
|
|
1416
|
+
plop: {
|
|
1417
|
+
fileNames: ["plopfile.js", "plopfile.cjs", "plopfile.mjs", "plopfile.ts"],
|
|
1418
|
+
},
|
|
1419
|
+
"pnpm-lock": {
|
|
1420
|
+
fileNames: ["pnpm-lock.yaml"],
|
|
1421
|
+
},
|
|
1422
|
+
pnpm: {
|
|
1423
|
+
fileNames: ["pnpm-workspace.yaml", ".pnpmfile.cjs"],
|
|
1424
|
+
},
|
|
1425
|
+
"poetry-lock": {
|
|
1426
|
+
fileNames: ["poetry.lock"],
|
|
1427
|
+
},
|
|
1428
|
+
postcss: {
|
|
1429
|
+
languageIds: ["postcss"],
|
|
1430
|
+
fileExtensions: ["pcss", "sss"],
|
|
1431
|
+
fileNames: [
|
|
1432
|
+
"postcss.config.js",
|
|
1433
|
+
"postcss.config.cjs",
|
|
1434
|
+
"postcss.config.mjs",
|
|
1435
|
+
"postcss.config.ts",
|
|
1436
|
+
"postcss.config.cts",
|
|
1437
|
+
"postcss.config.mts",
|
|
1438
|
+
".postcssrc.js",
|
|
1439
|
+
".postcssrc.cjs",
|
|
1440
|
+
".postcssrc.ts",
|
|
1441
|
+
".postcssrc.cts",
|
|
1442
|
+
".postcssrc",
|
|
1443
|
+
".postcssrc.json",
|
|
1444
|
+
".postcssrc.yaml",
|
|
1445
|
+
".postcssrc.yml",
|
|
1446
|
+
],
|
|
1447
|
+
},
|
|
1448
|
+
powershell: {
|
|
1449
|
+
languageIds: ["powershell"],
|
|
1450
|
+
fileExtensions: ["ps1", "psm1", "psd1", "ps1xml", "psc1", "pssc"],
|
|
1451
|
+
},
|
|
1452
|
+
"pre-commit": {
|
|
1453
|
+
fileNames: [".pre-commit-config.yaml", ".pre-commit-hooks.yaml"],
|
|
1454
|
+
},
|
|
1455
|
+
premake: {
|
|
1456
|
+
fileNames: ["premake4.lua", "premake5.lua", "premake.lua"],
|
|
1457
|
+
},
|
|
1458
|
+
"prettier-ignore": {
|
|
1459
|
+
fileNames: [".prettierignore"],
|
|
1460
|
+
},
|
|
1461
|
+
prettier: {
|
|
1462
|
+
fileNames: [
|
|
1463
|
+
".prettierrc",
|
|
1464
|
+
"prettier.config.js",
|
|
1465
|
+
"prettier.config.cjs",
|
|
1466
|
+
".prettierrc.js",
|
|
1467
|
+
".prettierrc.cjs",
|
|
1468
|
+
".prettierrc.json",
|
|
1469
|
+
".prettierrc.json5",
|
|
1470
|
+
".prettierrc.yaml",
|
|
1471
|
+
".prettierrc.yml",
|
|
1472
|
+
".prettierrc.toml",
|
|
1473
|
+
"prettier.config.mjs",
|
|
1474
|
+
".prettierrc.mjs",
|
|
1475
|
+
],
|
|
1476
|
+
},
|
|
1477
|
+
prisma: {
|
|
1478
|
+
fileNames: ["prisma.yml"],
|
|
1479
|
+
fileExtensions: ["prisma"],
|
|
1480
|
+
},
|
|
1481
|
+
prolog: {
|
|
1482
|
+
languageIds: ["prolog"],
|
|
1483
|
+
fileExtensions: ["p", "pro"],
|
|
1484
|
+
},
|
|
1485
|
+
properties: {
|
|
1486
|
+
languageIds: ["ini", "properties", "spring-boot-properties"],
|
|
1487
|
+
fileExtensions: [
|
|
1488
|
+
"ini",
|
|
1489
|
+
"dlc",
|
|
1490
|
+
"config",
|
|
1491
|
+
"conf",
|
|
1492
|
+
"properties",
|
|
1493
|
+
"prop",
|
|
1494
|
+
"settings",
|
|
1495
|
+
"option",
|
|
1496
|
+
"props",
|
|
1497
|
+
"prefs",
|
|
1498
|
+
"sln.dotsettings",
|
|
1499
|
+
"sln.dotsettings.user",
|
|
1500
|
+
"cfg",
|
|
1501
|
+
],
|
|
1502
|
+
},
|
|
1503
|
+
proto: {
|
|
1504
|
+
languageIds: ["proto"],
|
|
1505
|
+
fileExtensions: ["proto"],
|
|
1506
|
+
},
|
|
1507
|
+
pug: {
|
|
1508
|
+
languageIds: ["jade"],
|
|
1509
|
+
fileExtensions: ["jade", "pug"],
|
|
1510
|
+
fileNames: [".pug-lintrc", ".pug-lintrc.js", ".pug-lintrc.json"],
|
|
1511
|
+
},
|
|
1512
|
+
puppeteer: {
|
|
1513
|
+
fileNames: [
|
|
1514
|
+
".puppeteerrc.cjs,",
|
|
1515
|
+
".puppeteerrc.js,",
|
|
1516
|
+
".puppeteerrc",
|
|
1517
|
+
".puppeteerrc.json,",
|
|
1518
|
+
".puppeteerrc.yaml,",
|
|
1519
|
+
"puppeteer.config.js",
|
|
1520
|
+
"puppeteer.config.cjs",
|
|
1521
|
+
],
|
|
1522
|
+
},
|
|
1523
|
+
"python-compiled": {
|
|
1524
|
+
fileExtensions: ["pyc", "pyo", "pyd"],
|
|
1525
|
+
},
|
|
1526
|
+
"python-config": {
|
|
1527
|
+
fileNames: [
|
|
1528
|
+
"pyproject.toml",
|
|
1529
|
+
"requirements.txt",
|
|
1530
|
+
"requirements-dev.txt",
|
|
1531
|
+
"requirements-test.txt",
|
|
1532
|
+
".python-version",
|
|
1533
|
+
],
|
|
1534
|
+
},
|
|
1535
|
+
python: {
|
|
1536
|
+
languageIds: ["python"],
|
|
1537
|
+
fileExtensions: ["py"],
|
|
1538
|
+
},
|
|
1539
|
+
r: {
|
|
1540
|
+
languageIds: ["r", "rsweave"],
|
|
1541
|
+
fileExtensions: ["r", "rmd"],
|
|
1542
|
+
fileNames: [".Rhistory"],
|
|
1543
|
+
},
|
|
1544
|
+
racket: {
|
|
1545
|
+
fileExtensions: ["rkt"],
|
|
1546
|
+
},
|
|
1547
|
+
razor: {
|
|
1548
|
+
languageIds: ["razor", "aspnetcorerazor"],
|
|
1549
|
+
fileExtensions: ["cshtml", "vbhtml"],
|
|
1550
|
+
},
|
|
1551
|
+
readme: {
|
|
1552
|
+
fileNames: ["readme.md", "readme.rst", "readme.txt", "readme"],
|
|
1553
|
+
},
|
|
1554
|
+
reason: {
|
|
1555
|
+
languageIds: ["reason", "reason_lisp"],
|
|
1556
|
+
fileExtensions: ["re", "rei"],
|
|
1557
|
+
},
|
|
1558
|
+
redwood: {
|
|
1559
|
+
fileNames: ["redwood.toml"],
|
|
1560
|
+
},
|
|
1561
|
+
release: {
|
|
1562
|
+
fileNames: [".goreleaser.yaml"],
|
|
1563
|
+
},
|
|
1564
|
+
remix: {
|
|
1565
|
+
fileNames: ["remix.config.js", "remix.config.ts"],
|
|
1566
|
+
},
|
|
1567
|
+
renovate: {
|
|
1568
|
+
fileNames: [
|
|
1569
|
+
".renovaterc",
|
|
1570
|
+
".renovaterc.json",
|
|
1571
|
+
"renovate-config.json",
|
|
1572
|
+
"renovate.json",
|
|
1573
|
+
"renovate.json5",
|
|
1574
|
+
],
|
|
1575
|
+
},
|
|
1576
|
+
rescript: {
|
|
1577
|
+
languageIds: ["rescript"],
|
|
1578
|
+
fileExtensions: ["res"],
|
|
1579
|
+
},
|
|
1580
|
+
roblox: {
|
|
1581
|
+
fileExtensions: ["rbxl", "rbxlx", "rbxm", "rbxmx"],
|
|
1582
|
+
},
|
|
1583
|
+
robots: {
|
|
1584
|
+
fileNames: ["robots.txt"],
|
|
1585
|
+
},
|
|
1586
|
+
rollup: {
|
|
1587
|
+
fileNames: [
|
|
1588
|
+
"rollup.config.js",
|
|
1589
|
+
"rollup.config.mjs",
|
|
1590
|
+
"rollup.config.ts",
|
|
1591
|
+
"rollup-config.js",
|
|
1592
|
+
"rollup-config.mjs",
|
|
1593
|
+
"rollup-config.ts",
|
|
1594
|
+
"rollup.config.common.js",
|
|
1595
|
+
"rollup.config.common.mjs",
|
|
1596
|
+
"rollup.config.common.ts",
|
|
1597
|
+
"rollup.config.base.js",
|
|
1598
|
+
"rollup.config.base.mjs",
|
|
1599
|
+
"rollup.config.base.ts",
|
|
1600
|
+
"rollup.config.prod.js",
|
|
1601
|
+
"rollup.config.prod.mjs",
|
|
1602
|
+
"rollup.config.prod.ts",
|
|
1603
|
+
"rollup.config.dev.js",
|
|
1604
|
+
"rollup.config.dev.mjs",
|
|
1605
|
+
"rollup.config.dev.ts",
|
|
1606
|
+
"rollup.config.prod.vendor.js",
|
|
1607
|
+
"rollup.config.prod.vendor.mjs",
|
|
1608
|
+
"rollup.config.prod.vendor.ts",
|
|
1609
|
+
],
|
|
1610
|
+
},
|
|
1611
|
+
"ruby-gem-lock": {
|
|
1612
|
+
fileNames: ["gemfile.lock"],
|
|
1613
|
+
},
|
|
1614
|
+
"ruby-gem": {
|
|
1615
|
+
fileNames: ["gemfile"],
|
|
1616
|
+
},
|
|
1617
|
+
ruby: {
|
|
1618
|
+
languageIds: ["ruby"],
|
|
1619
|
+
fileExtensions: ["rb", "erb", "rbs"],
|
|
1620
|
+
fileNames: [".ruby-version"],
|
|
1621
|
+
},
|
|
1622
|
+
ruff: {
|
|
1623
|
+
fileNames: ["ruff.toml", ".ruff.toml"],
|
|
1624
|
+
},
|
|
1625
|
+
"rust-config": {
|
|
1626
|
+
fileNames: [
|
|
1627
|
+
"rustfmt.toml",
|
|
1628
|
+
".rustfmt.toml",
|
|
1629
|
+
"rust-toolchain.toml",
|
|
1630
|
+
"clippy.toml",
|
|
1631
|
+
],
|
|
1632
|
+
},
|
|
1633
|
+
rust: {
|
|
1634
|
+
languageIds: ["rust"],
|
|
1635
|
+
fileExtensions: ["rs", "ron"],
|
|
1636
|
+
},
|
|
1637
|
+
salesforce: {
|
|
1638
|
+
fileExtensions: ["cls"],
|
|
1639
|
+
},
|
|
1640
|
+
sass: {
|
|
1641
|
+
languageIds: ["sass", "scss"],
|
|
1642
|
+
fileExtensions: ["scss", "sass"],
|
|
1643
|
+
},
|
|
1644
|
+
scala: {
|
|
1645
|
+
languageIds: ["scala"],
|
|
1646
|
+
fileExtensions: ["scala", "sc"],
|
|
1647
|
+
},
|
|
1648
|
+
search: {
|
|
1649
|
+
languageIds: ["search-result"],
|
|
1650
|
+
fileExtensions: ["code-search"],
|
|
1651
|
+
},
|
|
1652
|
+
security: {
|
|
1653
|
+
fileNames: ["security.md", "security.txt", "security"],
|
|
1654
|
+
},
|
|
1655
|
+
"semantic-release": {
|
|
1656
|
+
fileNames: [
|
|
1657
|
+
".releaserc",
|
|
1658
|
+
".releaserc.yaml",
|
|
1659
|
+
".releaserc.yml",
|
|
1660
|
+
".releaserc.json",
|
|
1661
|
+
".releaserc.js",
|
|
1662
|
+
".releaserc.cjs",
|
|
1663
|
+
"release.config.js",
|
|
1664
|
+
"release.config.cjs",
|
|
1665
|
+
],
|
|
1666
|
+
},
|
|
1667
|
+
"semgrep-ignore": {
|
|
1668
|
+
fileNames: [".semgrepignore"],
|
|
1669
|
+
},
|
|
1670
|
+
semgrep: {
|
|
1671
|
+
fileNames: ["semgrep.yml"],
|
|
1672
|
+
},
|
|
1673
|
+
sentry: {
|
|
1674
|
+
fileNames: [".sentryclirc"],
|
|
1675
|
+
},
|
|
1676
|
+
serverless: {
|
|
1677
|
+
fileNames: [
|
|
1678
|
+
"serverless.yml",
|
|
1679
|
+
"serverless.yaml",
|
|
1680
|
+
"serverless.json",
|
|
1681
|
+
"serverless.js",
|
|
1682
|
+
"serverless.ts",
|
|
1683
|
+
],
|
|
1684
|
+
},
|
|
1685
|
+
shader: {
|
|
1686
|
+
languageIds: ["hlsl", "glsl", "wgsl"],
|
|
1687
|
+
fileExtensions: [
|
|
1688
|
+
"glsl",
|
|
1689
|
+
"vert",
|
|
1690
|
+
"tesc",
|
|
1691
|
+
"tese",
|
|
1692
|
+
"geom",
|
|
1693
|
+
"frag",
|
|
1694
|
+
"comp",
|
|
1695
|
+
"vert.glsl",
|
|
1696
|
+
"tesc.glsl",
|
|
1697
|
+
"tese.glsl",
|
|
1698
|
+
"geom.glsl",
|
|
1699
|
+
"frag.glsl",
|
|
1700
|
+
"comp.glsl",
|
|
1701
|
+
"vertex.glsl",
|
|
1702
|
+
"geometry.glsl",
|
|
1703
|
+
"fragment.glsl",
|
|
1704
|
+
"compute.glsl",
|
|
1705
|
+
"ts.glsl",
|
|
1706
|
+
"gs.glsl",
|
|
1707
|
+
"vs.glsl",
|
|
1708
|
+
"fs.glsl",
|
|
1709
|
+
"shader",
|
|
1710
|
+
"vertexshader",
|
|
1711
|
+
"fragmentshader",
|
|
1712
|
+
"geometryshader",
|
|
1713
|
+
"computeshader",
|
|
1714
|
+
"hlsl",
|
|
1715
|
+
"pixel.hlsl",
|
|
1716
|
+
"geometry.hlsl",
|
|
1717
|
+
"compute.hlsl",
|
|
1718
|
+
"tessellation.hlsl",
|
|
1719
|
+
"px.hlsl",
|
|
1720
|
+
"geom.hlsl",
|
|
1721
|
+
"comp.hlsl",
|
|
1722
|
+
"tess.hlsl",
|
|
1723
|
+
"wgsl",
|
|
1724
|
+
],
|
|
1725
|
+
},
|
|
1726
|
+
sketch: {
|
|
1727
|
+
fileExtensions: ["sketch"],
|
|
1728
|
+
},
|
|
1729
|
+
snowpack: {
|
|
1730
|
+
fileNames: [
|
|
1731
|
+
"snowpack.config.js",
|
|
1732
|
+
"snowpack.config.cjs",
|
|
1733
|
+
"snowpack.config.mjs",
|
|
1734
|
+
"snowpack.config.ts",
|
|
1735
|
+
"snowpack.config.cts",
|
|
1736
|
+
"snowpack.config.mts",
|
|
1737
|
+
"snowpack.deps.json",
|
|
1738
|
+
"snowpack.config.json",
|
|
1739
|
+
],
|
|
1740
|
+
},
|
|
1741
|
+
solidity: {
|
|
1742
|
+
languageIds: ["solidity"],
|
|
1743
|
+
fileExtensions: ["sol"],
|
|
1744
|
+
},
|
|
1745
|
+
"sonar-cloud": {
|
|
1746
|
+
fileNames: [
|
|
1747
|
+
"sonar-project.properties",
|
|
1748
|
+
".sonarcloud.properties",
|
|
1749
|
+
"sonarcloud.yaml",
|
|
1750
|
+
],
|
|
1751
|
+
},
|
|
1752
|
+
spwn: {
|
|
1753
|
+
fileExtensions: ["spwn"],
|
|
1754
|
+
},
|
|
1755
|
+
stackblitz: {
|
|
1756
|
+
fileNames: [".stackblitzrc"],
|
|
1757
|
+
},
|
|
1758
|
+
stata: {
|
|
1759
|
+
fileExtensions: ["ado", "do", "dta"],
|
|
1760
|
+
},
|
|
1761
|
+
stencil: {
|
|
1762
|
+
fileNames: ["stencil.config.js", "stencil.config.ts"],
|
|
1763
|
+
},
|
|
1764
|
+
stitches: {
|
|
1765
|
+
fileNames: ["stitches.config.js", "stitches.config.ts"],
|
|
1766
|
+
},
|
|
1767
|
+
"storybook-svelte": {
|
|
1768
|
+
fileExtensions: ["story.svelte", "stories.svelte"],
|
|
1769
|
+
},
|
|
1770
|
+
"storybook-vue": {
|
|
1771
|
+
fileExtensions: ["story.vue", "stories.vue"],
|
|
1772
|
+
},
|
|
1773
|
+
storybook: {
|
|
1774
|
+
fileExtensions: [
|
|
1775
|
+
"stories.js",
|
|
1776
|
+
"stories.jsx",
|
|
1777
|
+
"stories.mdx",
|
|
1778
|
+
"story.js",
|
|
1779
|
+
"story.jsx",
|
|
1780
|
+
"stories.ts",
|
|
1781
|
+
"stories.tsx",
|
|
1782
|
+
"story.ts",
|
|
1783
|
+
"story.tsx",
|
|
1784
|
+
"story.mdx",
|
|
1785
|
+
],
|
|
1786
|
+
},
|
|
1787
|
+
"stylelint-ignore": {
|
|
1788
|
+
fileNames: [".stylelintignore", ".stylelintcache"],
|
|
1789
|
+
},
|
|
1790
|
+
stylelint: {
|
|
1791
|
+
fileNames: [
|
|
1792
|
+
".stylelintrc",
|
|
1793
|
+
"stylelint.config.js",
|
|
1794
|
+
"stylelint.config.cjs",
|
|
1795
|
+
"stylelint.config.mjs",
|
|
1796
|
+
".stylelintrc.json",
|
|
1797
|
+
".stylelintrc.yaml",
|
|
1798
|
+
".stylelintrc.yml",
|
|
1799
|
+
".stylelintrc.js",
|
|
1800
|
+
".stylelintrc.cjs",
|
|
1801
|
+
".stylelintrc.mjs",
|
|
1802
|
+
],
|
|
1803
|
+
},
|
|
1804
|
+
sublime: {
|
|
1805
|
+
fileExtensions: ["sublime-project", "sublime-workspace"],
|
|
1806
|
+
},
|
|
1807
|
+
"super-collider": {
|
|
1808
|
+
fileExtensions: ["sc", "scd"],
|
|
1809
|
+
},
|
|
1810
|
+
"svelte-config": {
|
|
1811
|
+
fileNames: [
|
|
1812
|
+
"svelte.config.js",
|
|
1813
|
+
"svelte.config.ts",
|
|
1814
|
+
"svelte.config.cjs",
|
|
1815
|
+
"svelte.config.mjs",
|
|
1816
|
+
],
|
|
1817
|
+
},
|
|
1818
|
+
svelte: {
|
|
1819
|
+
languageIds: ["svelte"],
|
|
1820
|
+
fileExtensions: ["svelte"],
|
|
1821
|
+
},
|
|
1822
|
+
svg: {
|
|
1823
|
+
languageIds: ["svg"],
|
|
1824
|
+
fileExtensions: ["svg"],
|
|
1825
|
+
},
|
|
1826
|
+
swift: {
|
|
1827
|
+
languageIds: ["swift"],
|
|
1828
|
+
fileExtensions: ["swift"],
|
|
1829
|
+
},
|
|
1830
|
+
tailwind: {
|
|
1831
|
+
fileNames: [
|
|
1832
|
+
"tailwind.js",
|
|
1833
|
+
"tailwind.ts",
|
|
1834
|
+
"tailwind.config.js",
|
|
1835
|
+
"tailwind.config.cjs",
|
|
1836
|
+
"tailwind.config.mjs",
|
|
1837
|
+
"tailwind.config.ts",
|
|
1838
|
+
"tailwind.config.cts",
|
|
1839
|
+
"tailwind.config.mts",
|
|
1840
|
+
],
|
|
1841
|
+
},
|
|
1842
|
+
taskfile: {
|
|
1843
|
+
fileNames: [
|
|
1844
|
+
"taskfile.yml",
|
|
1845
|
+
"taskfile.yaml",
|
|
1846
|
+
"taskfile.dist.yml",
|
|
1847
|
+
"taskfile.dist.yaml",
|
|
1848
|
+
".taskrc.yml",
|
|
1849
|
+
".taskrc.yaml",
|
|
1850
|
+
],
|
|
1851
|
+
},
|
|
1852
|
+
"tauri-ignore": {
|
|
1853
|
+
fileNames: [".taurignore"],
|
|
1854
|
+
},
|
|
1855
|
+
tauri: {
|
|
1856
|
+
fileNames: [
|
|
1857
|
+
"tauri.conf.json",
|
|
1858
|
+
"tauri.conf.json5",
|
|
1859
|
+
"tauri.config.json",
|
|
1860
|
+
"tauri.linux.conf.json",
|
|
1861
|
+
"tauri.windows.conf.json",
|
|
1862
|
+
"tauri.macos.conf.json",
|
|
1863
|
+
"Tauri.toml",
|
|
1864
|
+
],
|
|
1865
|
+
fileExtensions: ["tauri"],
|
|
1866
|
+
},
|
|
1867
|
+
terraform: {
|
|
1868
|
+
languageIds: ["terraform"],
|
|
1869
|
+
fileExtensions: ["tf", "tf.json", "tfvars", "tfstate", "tfbackend"],
|
|
1870
|
+
},
|
|
1871
|
+
text: {
|
|
1872
|
+
languageIds: ["plaintext"],
|
|
1873
|
+
fileExtensions: ["txt"],
|
|
1874
|
+
},
|
|
1875
|
+
todo: {
|
|
1876
|
+
fileExtensions: ["todo"],
|
|
1877
|
+
fileNames: ["todo.md", "todos.md"],
|
|
1878
|
+
},
|
|
1879
|
+
toml: {
|
|
1880
|
+
languageIds: ["toml"],
|
|
1881
|
+
fileExtensions: ["toml"],
|
|
1882
|
+
},
|
|
1883
|
+
turbo: {
|
|
1884
|
+
fileNames: ["turbo.json"],
|
|
1885
|
+
},
|
|
1886
|
+
twig: {
|
|
1887
|
+
languageIds: ["twig"],
|
|
1888
|
+
fileExtensions: ["twig"],
|
|
1889
|
+
},
|
|
1890
|
+
twine: {
|
|
1891
|
+
languageIds: [
|
|
1892
|
+
"twee3",
|
|
1893
|
+
"twee3-harlowe-3",
|
|
1894
|
+
"twee3-chapbook-1",
|
|
1895
|
+
"twee3-sugarcube-2",
|
|
1896
|
+
],
|
|
1897
|
+
fileExtensions: ["tw", "twee"],
|
|
1898
|
+
},
|
|
1899
|
+
"typescript-config": {
|
|
1900
|
+
fileNames: [
|
|
1901
|
+
"tsconfig.json",
|
|
1902
|
+
"tsconfig.app.json",
|
|
1903
|
+
"tsconfig.editor.json",
|
|
1904
|
+
"tsconfig.spec.json",
|
|
1905
|
+
"tsconfig.base.json",
|
|
1906
|
+
"tsconfig.build.json",
|
|
1907
|
+
"tsconfig.eslint.json",
|
|
1908
|
+
"tsconfig.lib.json",
|
|
1909
|
+
"tsconfig.lib.prod.json",
|
|
1910
|
+
"tsconfig.node.json",
|
|
1911
|
+
"tsconfig.test.json",
|
|
1912
|
+
"tsconfig.e2e.json",
|
|
1913
|
+
"tsconfig.web.json",
|
|
1914
|
+
"tsconfig.webworker.json",
|
|
1915
|
+
"tsconfig.worker.json",
|
|
1916
|
+
"tsconfig.config.json",
|
|
1917
|
+
"tsconfig.vitest.json",
|
|
1918
|
+
"tsconfig.cjs.json",
|
|
1919
|
+
"tsconfig.esm.json",
|
|
1920
|
+
"tsconfig.mjs.json",
|
|
1921
|
+
"tsconfig.doc.json",
|
|
1922
|
+
"tsconfig.paths.json",
|
|
1923
|
+
"tsconfig.main.json",
|
|
1924
|
+
"tsconfig.cypress-ct.json",
|
|
1925
|
+
"tsconfig.components.json",
|
|
1926
|
+
],
|
|
1927
|
+
fileExtensions: ["tsconfig.json"],
|
|
1928
|
+
},
|
|
1929
|
+
"typescript-def": {
|
|
1930
|
+
fileExtensions: ["d.ts", "d.cts", "d.mts"],
|
|
1931
|
+
},
|
|
1932
|
+
"typescript-react": {
|
|
1933
|
+
languageIds: ["typescriptreact"],
|
|
1934
|
+
fileExtensions: ["tsx"],
|
|
1935
|
+
},
|
|
1936
|
+
"typescript-test": {
|
|
1937
|
+
fileExtensions: [
|
|
1938
|
+
"spec.ts",
|
|
1939
|
+
"spec.cts",
|
|
1940
|
+
"spec.mts",
|
|
1941
|
+
"cy.ts",
|
|
1942
|
+
"e2e-spec.ts",
|
|
1943
|
+
"e2e-spec.cts",
|
|
1944
|
+
"e2e-spec.mts",
|
|
1945
|
+
"test.ts",
|
|
1946
|
+
"test.cts",
|
|
1947
|
+
"test.mts",
|
|
1948
|
+
"ts.snap",
|
|
1949
|
+
|
|
1950
|
+
"spec-d.ts",
|
|
1951
|
+
"test-d.ts",
|
|
1952
|
+
|
|
1953
|
+
"spec.tsx",
|
|
1954
|
+
"test.tsx",
|
|
1955
|
+
"tsx.snap",
|
|
1956
|
+
"cy.tsx",
|
|
1957
|
+
],
|
|
1958
|
+
},
|
|
1959
|
+
typescript: {
|
|
1960
|
+
languageIds: ["typescript"],
|
|
1961
|
+
fileExtensions: ["ts", "cts", "mts"],
|
|
1962
|
+
},
|
|
1963
|
+
typst: {
|
|
1964
|
+
languageIds: ["typst"],
|
|
1965
|
+
fileExtensions: ["typ"],
|
|
1966
|
+
fileNames: ["typst.toml"],
|
|
1967
|
+
},
|
|
1968
|
+
unity: {
|
|
1969
|
+
languageIds: ["shaderlab"],
|
|
1970
|
+
fileExtensions: ["unity"],
|
|
1971
|
+
},
|
|
1972
|
+
unocss: {
|
|
1973
|
+
fileNames: [
|
|
1974
|
+
"uno.config.js",
|
|
1975
|
+
"uno.config.mjs",
|
|
1976
|
+
"uno.config.ts",
|
|
1977
|
+
"uno.config.mts",
|
|
1978
|
+
"unocss.config.js",
|
|
1979
|
+
"unocss.config.mjs",
|
|
1980
|
+
"unocss.config.ts",
|
|
1981
|
+
"unocss.config.mts",
|
|
1982
|
+
],
|
|
1983
|
+
},
|
|
1984
|
+
url: {
|
|
1985
|
+
fileExtensions: ["url"],
|
|
1986
|
+
},
|
|
1987
|
+
uv: {
|
|
1988
|
+
fileNames: ["uv.lock"],
|
|
1989
|
+
},
|
|
1990
|
+
v: {
|
|
1991
|
+
languageIds: ["v"],
|
|
1992
|
+
fileExtensions: ["v"],
|
|
1993
|
+
fileNames: ["vpkg.json", "v.mod"],
|
|
1994
|
+
},
|
|
1995
|
+
"vanilla-extract": {
|
|
1996
|
+
fileExtensions: ["css.ts"],
|
|
1997
|
+
},
|
|
1998
|
+
vento: {
|
|
1999
|
+
fileExtensions: ["vto"],
|
|
2000
|
+
},
|
|
2001
|
+
"vercel-ignore": {
|
|
2002
|
+
fileNames: [".vercelignore", ".nowignore"],
|
|
2003
|
+
},
|
|
2004
|
+
vercel: {
|
|
2005
|
+
fileNames: ["vercel.json", "now.json"],
|
|
2006
|
+
},
|
|
2007
|
+
verilog: {
|
|
2008
|
+
fileExtensions: ["vhd", "sv", "svh"],
|
|
2009
|
+
},
|
|
2010
|
+
vhs: {
|
|
2011
|
+
fileExtensions: ["tape"],
|
|
2012
|
+
},
|
|
2013
|
+
video: {
|
|
2014
|
+
fileExtensions: [
|
|
2015
|
+
"webm",
|
|
2016
|
+
"mkv",
|
|
2017
|
+
"flv",
|
|
2018
|
+
"vob",
|
|
2019
|
+
"ogv",
|
|
2020
|
+
"ogg",
|
|
2021
|
+
"gifv",
|
|
2022
|
+
"avi",
|
|
2023
|
+
"mov",
|
|
2024
|
+
"qt",
|
|
2025
|
+
"wmv",
|
|
2026
|
+
"yuv",
|
|
2027
|
+
"rm",
|
|
2028
|
+
"rmvb",
|
|
2029
|
+
"mp4",
|
|
2030
|
+
"m4v",
|
|
2031
|
+
"mpg",
|
|
2032
|
+
"mp2",
|
|
2033
|
+
"mpeg",
|
|
2034
|
+
"mpe",
|
|
2035
|
+
"mpv",
|
|
2036
|
+
"m2v",
|
|
2037
|
+
],
|
|
2038
|
+
},
|
|
2039
|
+
vim: {
|
|
2040
|
+
languageIds: ["viml"],
|
|
2041
|
+
fileExtensions: ["vimrc", "gvimrc", "exrc", "vim", "viminfo"],
|
|
2042
|
+
},
|
|
2043
|
+
"visual-studio": {
|
|
2044
|
+
languageIds: ["testOutput", "vb"],
|
|
2045
|
+
fileExtensions: [
|
|
2046
|
+
"csproj",
|
|
2047
|
+
"ruleset",
|
|
2048
|
+
"sln",
|
|
2049
|
+
"slnx",
|
|
2050
|
+
"suo",
|
|
2051
|
+
"vb",
|
|
2052
|
+
"vbs",
|
|
2053
|
+
"vcxitems",
|
|
2054
|
+
"vcxitems.filters",
|
|
2055
|
+
"vcxproj",
|
|
2056
|
+
"vcxproj.filters",
|
|
2057
|
+
],
|
|
2058
|
+
},
|
|
2059
|
+
vital: {
|
|
2060
|
+
fileExtensions: [
|
|
2061
|
+
"vital",
|
|
2062
|
+
"vitalbank",
|
|
2063
|
+
"vitallfo",
|
|
2064
|
+
"vitalskin",
|
|
2065
|
+
"vitaltable",
|
|
2066
|
+
"vitaltheme",
|
|
2067
|
+
],
|
|
2068
|
+
},
|
|
2069
|
+
vite: {
|
|
2070
|
+
fileNames: [
|
|
2071
|
+
"vite.config.js",
|
|
2072
|
+
"vite.config.mjs",
|
|
2073
|
+
"vite.config.cjs",
|
|
2074
|
+
"vite.config.ts",
|
|
2075
|
+
"vite.config.cts",
|
|
2076
|
+
"vite.config.mts",
|
|
2077
|
+
],
|
|
2078
|
+
},
|
|
2079
|
+
vitest: {
|
|
2080
|
+
fileNames: [
|
|
2081
|
+
"vitest.config.ts",
|
|
2082
|
+
"vitest.config.mts",
|
|
2083
|
+
"vitest.config.cts",
|
|
2084
|
+
"vitest.config.js",
|
|
2085
|
+
"vitest.config.mjs",
|
|
2086
|
+
"vitest.config.cjs",
|
|
2087
|
+
"vitest.workspace.js",
|
|
2088
|
+
"vitest.workspace.ts",
|
|
2089
|
+
"vitest.workspace.json",
|
|
2090
|
+
],
|
|
2091
|
+
},
|
|
2092
|
+
"vs-codium": {},
|
|
2093
|
+
"vscode-ignore": {
|
|
2094
|
+
fileNames: [".vscodeignore"],
|
|
2095
|
+
},
|
|
2096
|
+
vscode: {
|
|
2097
|
+
fileExtensions: [
|
|
2098
|
+
"vsixmanifest",
|
|
2099
|
+
"vsix",
|
|
2100
|
+
"code-workplace",
|
|
2101
|
+
"code-workspace",
|
|
2102
|
+
"code-profile",
|
|
2103
|
+
"code-snippets",
|
|
2104
|
+
],
|
|
2105
|
+
},
|
|
2106
|
+
"vue-config": {
|
|
2107
|
+
fileNames: [
|
|
2108
|
+
"vue.config.js",
|
|
2109
|
+
"vue.config.cjs",
|
|
2110
|
+
"vue.config.mjs",
|
|
2111
|
+
"vue.config.ts",
|
|
2112
|
+
"vue.config.cts",
|
|
2113
|
+
"vue.config.mts",
|
|
2114
|
+
".vuerc",
|
|
2115
|
+
],
|
|
2116
|
+
},
|
|
2117
|
+
vue: {
|
|
2118
|
+
languageIds: ["vue"],
|
|
2119
|
+
fileExtensions: ["vue"],
|
|
2120
|
+
},
|
|
2121
|
+
"web-assembly": {
|
|
2122
|
+
fileExtensions: ["wat", "wasm"],
|
|
2123
|
+
},
|
|
2124
|
+
webpack: {
|
|
2125
|
+
fileNames: [
|
|
2126
|
+
"webpack.js",
|
|
2127
|
+
"webpack.cjs",
|
|
2128
|
+
"webpack.mjs",
|
|
2129
|
+
"webpack.ts",
|
|
2130
|
+
"webpack.cts",
|
|
2131
|
+
"webpack.mts",
|
|
2132
|
+
"webpack.base.js",
|
|
2133
|
+
"webpack.base.cjs",
|
|
2134
|
+
"webpack.base.mjs",
|
|
2135
|
+
"webpack.base.ts",
|
|
2136
|
+
"webpack.base.cts",
|
|
2137
|
+
"webpack.base.mts",
|
|
2138
|
+
"webpack.config.js",
|
|
2139
|
+
"webpack.config.cjs",
|
|
2140
|
+
"webpack.config.mjs",
|
|
2141
|
+
"webpack.config.ts",
|
|
2142
|
+
"webpack.config.cts",
|
|
2143
|
+
"webpack.config.mts",
|
|
2144
|
+
"webpack.common.js",
|
|
2145
|
+
"webpack.common.cjs",
|
|
2146
|
+
"webpack.common.mjs",
|
|
2147
|
+
"webpack.common.ts",
|
|
2148
|
+
"webpack.common.cts",
|
|
2149
|
+
"webpack.common.mts",
|
|
2150
|
+
"webpack.config.common.js",
|
|
2151
|
+
"webpack.config.common.cjs",
|
|
2152
|
+
"webpack.config.common.mjs",
|
|
2153
|
+
"webpack.config.common.ts",
|
|
2154
|
+
"webpack.config.common.cts",
|
|
2155
|
+
"webpack.config.common.mts",
|
|
2156
|
+
"webpack.config.common.babel.js",
|
|
2157
|
+
"webpack.config.common.babel.ts",
|
|
2158
|
+
"webpack.dev.js",
|
|
2159
|
+
"webpack.dev.cjs",
|
|
2160
|
+
"webpack.dev.mjs",
|
|
2161
|
+
"webpack.dev.ts",
|
|
2162
|
+
"webpack.dev.cts",
|
|
2163
|
+
"webpack.dev.mts",
|
|
2164
|
+
"webpack.development.js",
|
|
2165
|
+
"webpack.development.cjs",
|
|
2166
|
+
"webpack.development.mjs",
|
|
2167
|
+
"webpack.development.ts",
|
|
2168
|
+
"webpack.development.cts",
|
|
2169
|
+
"webpack.development.mts",
|
|
2170
|
+
"webpack.config.dev.js",
|
|
2171
|
+
"webpack.config.dev.cjs",
|
|
2172
|
+
"webpack.config.dev.mjs",
|
|
2173
|
+
"webpack.config.dev.ts",
|
|
2174
|
+
"webpack.config.dev.cts",
|
|
2175
|
+
"webpack.config.dev.mts",
|
|
2176
|
+
"webpack.config.dev.babel.js",
|
|
2177
|
+
"webpack.config.dev.babel.ts",
|
|
2178
|
+
"webpack.config.main.js",
|
|
2179
|
+
"webpack.config.renderer.ts",
|
|
2180
|
+
"webpack.mix.js",
|
|
2181
|
+
"webpack.mix.cjs",
|
|
2182
|
+
"webpack.mix.mjs",
|
|
2183
|
+
"webpack.mix.ts",
|
|
2184
|
+
"webpack.mix.cts",
|
|
2185
|
+
"webpack.mix.mts",
|
|
2186
|
+
"webpack.prod.js",
|
|
2187
|
+
"webpack.prod.cjs",
|
|
2188
|
+
"webpack.prod.mjs",
|
|
2189
|
+
"webpack.prod.ts",
|
|
2190
|
+
"webpack.prod.cts",
|
|
2191
|
+
"webpack.prod.mts",
|
|
2192
|
+
"webpack.prod.config.js",
|
|
2193
|
+
"webpack.prod.config.cjs",
|
|
2194
|
+
"webpack.prod.config.mjs",
|
|
2195
|
+
"webpack.prod.config.ts",
|
|
2196
|
+
"webpack.prod.config.cts",
|
|
2197
|
+
"webpack.prod.config.mts",
|
|
2198
|
+
"webpack.production.js",
|
|
2199
|
+
"webpack.production.cjs",
|
|
2200
|
+
"webpack.production.mjs",
|
|
2201
|
+
"webpack.production.ts",
|
|
2202
|
+
"webpack.production.cts",
|
|
2203
|
+
"webpack.production.mts",
|
|
2204
|
+
"webpack.server.js",
|
|
2205
|
+
"webpack.server.cjs",
|
|
2206
|
+
"webpack.server.mjs",
|
|
2207
|
+
"webpack.server.ts",
|
|
2208
|
+
"webpack.server.cts",
|
|
2209
|
+
"webpack.server.mts",
|
|
2210
|
+
"webpack.client.js",
|
|
2211
|
+
"webpack.client.cjs",
|
|
2212
|
+
"webpack.client.mjs",
|
|
2213
|
+
"webpack.client.ts",
|
|
2214
|
+
"webpack.client.cts",
|
|
2215
|
+
"webpack.client.mts",
|
|
2216
|
+
"webpack.config.server.js",
|
|
2217
|
+
"webpack.config.server.cjs",
|
|
2218
|
+
"webpack.config.server.mjs",
|
|
2219
|
+
"webpack.config.server.ts",
|
|
2220
|
+
"webpack.config.server.cts",
|
|
2221
|
+
"webpack.config.server.mts",
|
|
2222
|
+
"webpack.config.client.js",
|
|
2223
|
+
"webpack.config.client.cjs",
|
|
2224
|
+
"webpack.config.client.mjs",
|
|
2225
|
+
"webpack.config.client.ts",
|
|
2226
|
+
"webpack.config.client.cts",
|
|
2227
|
+
"webpack.config.client.mts",
|
|
2228
|
+
"webpack.config.production.babel.js",
|
|
2229
|
+
"webpack.config.production.babel.ts",
|
|
2230
|
+
"webpack.config.prod.babel.js",
|
|
2231
|
+
"webpack.config.prod.babel.cjs",
|
|
2232
|
+
"webpack.config.prod.babel.mjs",
|
|
2233
|
+
"webpack.config.prod.babel.ts",
|
|
2234
|
+
"webpack.config.prod.babel.cts",
|
|
2235
|
+
"webpack.config.prod.babel.mts",
|
|
2236
|
+
"webpack.config.prod.js",
|
|
2237
|
+
"webpack.config.prod.cjs",
|
|
2238
|
+
"webpack.config.prod.mjs",
|
|
2239
|
+
"webpack.config.prod.ts",
|
|
2240
|
+
"webpack.config.prod.cts",
|
|
2241
|
+
"webpack.config.prod.mts",
|
|
2242
|
+
"webpack.config.production.js",
|
|
2243
|
+
"webpack.config.production.cjs",
|
|
2244
|
+
"webpack.config.production.mjs",
|
|
2245
|
+
"webpack.config.production.ts",
|
|
2246
|
+
"webpack.config.production.cts",
|
|
2247
|
+
"webpack.config.production.mts",
|
|
2248
|
+
"webpack.config.staging.js",
|
|
2249
|
+
"webpack.config.staging.cjs",
|
|
2250
|
+
"webpack.config.staging.mjs",
|
|
2251
|
+
"webpack.config.staging.ts",
|
|
2252
|
+
"webpack.config.staging.cts",
|
|
2253
|
+
"webpack.config.staging.mts",
|
|
2254
|
+
"webpack.config.babel.js",
|
|
2255
|
+
"webpack.config.babel.ts",
|
|
2256
|
+
"webpack.config.base.babel.js",
|
|
2257
|
+
"webpack.config.base.babel.ts",
|
|
2258
|
+
"webpack.config.base.js",
|
|
2259
|
+
"webpack.config.base.cjs",
|
|
2260
|
+
"webpack.config.base.mjs",
|
|
2261
|
+
"webpack.config.base.ts",
|
|
2262
|
+
"webpack.config.base.cts",
|
|
2263
|
+
"webpack.config.base.mts",
|
|
2264
|
+
"webpack.config.staging.babel.js",
|
|
2265
|
+
"webpack.config.staging.babel.ts",
|
|
2266
|
+
"webpack.config.coffee",
|
|
2267
|
+
"webpack.config.test.js",
|
|
2268
|
+
"webpack.config.test.cjs",
|
|
2269
|
+
"webpack.config.test.mjs",
|
|
2270
|
+
"webpack.config.test.ts",
|
|
2271
|
+
"webpack.config.test.cts",
|
|
2272
|
+
"webpack.config.test.mts",
|
|
2273
|
+
"webpack.config.vendor.js",
|
|
2274
|
+
"webpack.config.vendor.cjs",
|
|
2275
|
+
"webpack.config.vendor.mjs",
|
|
2276
|
+
"webpack.config.vendor.ts",
|
|
2277
|
+
"webpack.config.vendor.cts",
|
|
2278
|
+
"webpack.config.vendor.mts",
|
|
2279
|
+
"webpack.config.vendor.production.js",
|
|
2280
|
+
"webpack.config.vendor.production.cjs",
|
|
2281
|
+
"webpack.config.vendor.production.mjs",
|
|
2282
|
+
"webpack.config.vendor.production.ts",
|
|
2283
|
+
"webpack.config.vendor.production.cts",
|
|
2284
|
+
"webpack.config.vendor.production.mts",
|
|
2285
|
+
"webpack.test.js",
|
|
2286
|
+
"webpack.test.cjs",
|
|
2287
|
+
"webpack.test.mjs",
|
|
2288
|
+
"webpack.test.ts",
|
|
2289
|
+
"webpack.test.cts",
|
|
2290
|
+
"webpack.test.mts",
|
|
2291
|
+
"webpack.dist.js",
|
|
2292
|
+
"webpack.dist.cjs",
|
|
2293
|
+
"webpack.dist.mjs",
|
|
2294
|
+
"webpack.dist.ts",
|
|
2295
|
+
"webpack.dist.cts",
|
|
2296
|
+
"webpack.dist.mts",
|
|
2297
|
+
"webpackfile.js",
|
|
2298
|
+
"webpackfile.cjs",
|
|
2299
|
+
"webpackfile.mjs",
|
|
2300
|
+
"webpackfile.ts",
|
|
2301
|
+
"webpackfile.cts",
|
|
2302
|
+
"webpackfile.mts",
|
|
2303
|
+
],
|
|
2304
|
+
},
|
|
2305
|
+
windi: {
|
|
2306
|
+
fileNames: [
|
|
2307
|
+
"windi.config.js",
|
|
2308
|
+
"windi.config.cjs",
|
|
2309
|
+
"windi.config.ts",
|
|
2310
|
+
"windi.config.cts",
|
|
2311
|
+
"windi.config.json",
|
|
2312
|
+
],
|
|
2313
|
+
fileExtensions: ["windi"],
|
|
2314
|
+
},
|
|
2315
|
+
workflow: {
|
|
2316
|
+
languageIds: ["github-actions-workflow"],
|
|
2317
|
+
fileExtensions: ["workflows/yml", "workflows/yaml"],
|
|
2318
|
+
},
|
|
2319
|
+
wxt: {
|
|
2320
|
+
fileNames: ["wxt.config.js", "wxt.config.ts"],
|
|
2321
|
+
},
|
|
2322
|
+
xaml: {
|
|
2323
|
+
fileExtensions: ["xaml", "axaml"],
|
|
2324
|
+
},
|
|
2325
|
+
xcode: {
|
|
2326
|
+
fileExtensions: ["xcsettings", "xcworkspacedata"],
|
|
2327
|
+
},
|
|
2328
|
+
xmake: {
|
|
2329
|
+
fileNames: ["xmake.lua"],
|
|
2330
|
+
},
|
|
2331
|
+
xml: {
|
|
2332
|
+
fileExtensions: [
|
|
2333
|
+
"xml",
|
|
2334
|
+
"plist",
|
|
2335
|
+
"xsd",
|
|
2336
|
+
"dtd",
|
|
2337
|
+
"xsl",
|
|
2338
|
+
"xslt",
|
|
2339
|
+
"resx",
|
|
2340
|
+
"iml",
|
|
2341
|
+
"xquery",
|
|
2342
|
+
"tmLanguage",
|
|
2343
|
+
"manifest",
|
|
2344
|
+
"project",
|
|
2345
|
+
"xml.dist",
|
|
2346
|
+
"xml.dist.sample",
|
|
2347
|
+
"dmn",
|
|
2348
|
+
"jrxml",
|
|
2349
|
+
],
|
|
2350
|
+
fileNames: [".htaccess"],
|
|
2351
|
+
},
|
|
2352
|
+
yaml: {
|
|
2353
|
+
languageIds: ["yaml", "spring-boot-properties-yaml"],
|
|
2354
|
+
fileExtensions: ["yml", "yaml"],
|
|
2355
|
+
},
|
|
2356
|
+
"yarn-lock": {
|
|
2357
|
+
fileNames: ["yarn.lock"],
|
|
2358
|
+
},
|
|
2359
|
+
yarn: {
|
|
2360
|
+
fileNames: [
|
|
2361
|
+
".yarnrc",
|
|
2362
|
+
".yarnclean",
|
|
2363
|
+
".yarn-integrity",
|
|
2364
|
+
"yarn-error.log",
|
|
2365
|
+
".yarnrc.yml",
|
|
2366
|
+
".yarnrc.yaml",
|
|
2367
|
+
"yarn.config.cjs",
|
|
2368
|
+
],
|
|
2369
|
+
},
|
|
2370
|
+
zap: {
|
|
2371
|
+
fileExtensions: ["zap"],
|
|
2372
|
+
},
|
|
2373
|
+
zig: {
|
|
2374
|
+
fileExtensions: ["zig"],
|
|
2375
|
+
},
|
|
2376
|
+
zip: {
|
|
2377
|
+
fileExtensions: [
|
|
2378
|
+
"7z",
|
|
2379
|
+
"arj",
|
|
2380
|
+
"aseprite-extension",
|
|
2381
|
+
"bz",
|
|
2382
|
+
"bz2",
|
|
2383
|
+
"db",
|
|
2384
|
+
"gz",
|
|
2385
|
+
"paq8n",
|
|
2386
|
+
"paq8o",
|
|
2387
|
+
"pkg",
|
|
2388
|
+
"rar",
|
|
2389
|
+
"tar",
|
|
2390
|
+
"tbz",
|
|
2391
|
+
"tbz2",
|
|
2392
|
+
"tgz",
|
|
2393
|
+
"xz",
|
|
2394
|
+
"z",
|
|
2395
|
+
"zip",
|
|
2396
|
+
"zpaq",
|
|
2397
|
+
"zst",
|
|
2398
|
+
],
|
|
2399
|
+
},
|
|
2400
|
+
};
|
|
2401
|
+
|
|
2402
|
+
const { languageIds, fileExtensions, fileNames } = Object.entries(
|
|
2403
|
+
fileIcons
|
|
2404
|
+
).reduce<{
|
|
2405
|
+
languageIds: Record<string, string>;
|
|
2406
|
+
fileExtensions: Record<string, string>;
|
|
2407
|
+
fileNames: Record<string, string>;
|
|
2408
|
+
}>(
|
|
2409
|
+
({ languageIds, fileExtensions, fileNames }, [name, icon]) => ({
|
|
2410
|
+
languageIds: {
|
|
2411
|
+
...languageIds,
|
|
2412
|
+
...icon.languageIds?.reduce((a, c) => ({ ...a, [c]: name }), {}),
|
|
2413
|
+
},
|
|
2414
|
+
fileExtensions: {
|
|
2415
|
+
...fileExtensions,
|
|
2416
|
+
...icon.fileExtensions?.reduce((a, c) => ({ ...a, [c]: name }), {}),
|
|
2417
|
+
},
|
|
2418
|
+
fileNames: {
|
|
2419
|
+
...fileNames,
|
|
2420
|
+
...icon.fileNames?.reduce((a, c) => ({ ...a, [c]: name }), {}),
|
|
2421
|
+
},
|
|
2422
|
+
}),
|
|
2423
|
+
{
|
|
2424
|
+
languageIds: {},
|
|
2425
|
+
fileExtensions: {},
|
|
2426
|
+
fileNames: {},
|
|
2427
|
+
}
|
|
2428
|
+
);
|
|
2429
|
+
|
|
2430
|
+
export { fileExtensions, fileIcons, fileNames, languageIds };
|