material-icon-theme 4.23.1 → 4.25.0
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/.eslintrc.json +51 -51
- package/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md +7 -0
- package/.github/workflows/build.yml +45 -45
- package/.github/workflows/color-check.yml +22 -22
- package/.github/workflows/release.yml +73 -73
- package/.vscodeignore +21 -21
- package/CHANGELOG.md +1325 -1292
- package/CONTRIBUTING.md +199 -29
- package/README.md +198 -199
- package/icons/bitbucket.svg +13 -1
- package/icons/bun.svg +2 -0
- package/icons/bun_light.svg +2 -0
- package/icons/craco.svg +45 -45
- package/icons/folder-changesets-open.svg +5 -5
- package/icons/folder-changesets.svg +2 -2
- package/icons/folder-decorators-open.svg +2 -2
- package/icons/folder-decorators.svg +5 -5
- package/icons/folder-gamemaker-open.svg +2 -0
- package/icons/folder-gamemaker.svg +2 -0
- package/icons/folder-supabase-open.svg +5 -5
- package/icons/folder-supabase.svg +2 -2
- package/icons/gamemaker.svg +4 -0
- package/icons/objective-c.svg +1 -0
- package/icons/objective-cpp.svg +1 -0
- package/icons/pascal.svg +6 -1
- package/icons/sonarcloud.svg +4 -4
- package/icons/stylable.svg +10 -10
- package/icons/supabase.svg +4 -4
- package/icons/tldraw.svg +4 -0
- package/icons/tldraw_light.svg +4 -0
- package/icons/vitest.svg +6 -6
- package/images/contributors.png +0 -0
- package/images/fileIcons.png +0 -0
- package/images/folderIcons.png +0 -0
- package/images/how-tos/folder-icon-parts.png +0 -0
- package/images/how-tos/pick-folder-colors.png +0 -0
- package/images/how-tos/pick-folder-colors.svg +301 -0
- package/images/how-tos/svg-folder-icon-with-correct-colors.png +0 -0
- package/images/how-tos/svg-folder-icon-with-wrong-colors.png +0 -0
- package/images/how-tos/svg-with-light-color.png +0 -0
- package/images/how-tos/svg-with-spacing.png +0 -0
- package/images/how-tos/svg-with-too-dark-color.png +0 -0
- package/images/how-tos/svg-with-wrong-color.png +0 -0
- package/images/how-tos/svg-without-spacing.png +0 -0
- package/package.json +252 -252
- package/package.nls.de.json +32 -32
- package/package.nls.es.json +29 -29
- package/package.nls.fr.json +29 -29
- package/package.nls.ja.json +32 -32
- package/package.nls.json +32 -32
- package/package.nls.nl.json +32 -32
- package/package.nls.pl.json +32 -32
- package/package.nls.pt-BR.json +29 -29
- package/package.nls.pt-PT.json +29 -29
- package/package.nls.ru.json +29 -29
- package/package.nls.zh-CN.json +29 -29
- package/package.nls.zh-TW.json +29 -29
- package/src/commands/activate.ts +28 -28
- package/src/commands/explorerArrows.ts +55 -55
- package/src/commands/folderColor.ts +96 -96
- package/src/commands/folders.ts +55 -55
- package/src/commands/grayscale.ts +55 -55
- package/src/commands/iconPacks.ts +64 -64
- package/src/commands/index.ts +30 -30
- package/src/commands/opacity.ts +46 -46
- package/src/commands/saturation.ts +46 -46
- package/src/extension.ts +37 -37
- package/src/helpers/customIcons.ts +8 -8
- package/src/helpers/index.ts +88 -88
- package/src/i18n/index.ts +78 -78
- package/src/i18n/lang-de.ts +43 -43
- package/src/i18n/lang-en.ts +43 -43
- package/src/i18n/lang-es.ts +43 -43
- package/src/i18n/lang-fr.ts +43 -43
- package/src/i18n/lang-ja.ts +43 -43
- package/src/i18n/lang-nl.ts +43 -43
- package/src/i18n/lang-pl.ts +43 -43
- package/src/i18n/lang-pt-br.ts +43 -43
- package/src/i18n/lang-pt-pt.ts +43 -43
- package/src/i18n/lang-ru.ts +43 -43
- package/src/i18n/lang-uk.ts +43 -43
- package/src/i18n/lang-zh-cn.ts +43 -43
- package/src/i18n/lang-zh-tw.ts +43 -43
- package/src/icons/fileIcons.ts +2240 -2197
- package/src/icons/folderIcons.ts +823 -806
- package/src/icons/generator/folderGenerator.ts +340 -340
- package/src/icons/generator/iconOpacity.ts +111 -111
- package/src/icons/generator/iconSaturation.ts +140 -140
- package/src/icons/generator/jsonGenerator.ts +191 -191
- package/src/icons/languageIcons.ts +144 -141
- package/src/models/i18n/translation.ts +41 -41
- package/src/models/iconConfiguration.ts +37 -37
- package/src/models/icons/iconJsonOptions.ts +21 -21
- package/src/models/index.ts +3 -3
- package/src/scripts/contributors/index.ts +138 -138
- package/src/scripts/helpers/screenshots.ts +32 -32
- package/src/scripts/icons/checks/checkIconAvailability.ts +215 -215
- package/src/scripts/icons/checks/checkIconConflicts.ts +152 -152
- package/src/scripts/icons/checks/checkIconUsage.ts +137 -137
- package/src/scripts/icons/checks/index.ts +7 -7
- package/src/scripts/preview/index.ts +40 -40
- package/src/scripts/preview/preview.ts +163 -163
- package/src/test/runTest.ts +26 -26
- package/src/test/spec/i18n/i18n.spec.ts +54 -54
- package/src/test/spec/icons/fileIcons.spec.ts +250 -250
- package/src/test/spec/icons/folderIcons.spec.ts +418 -418
- package/src/test/spec/icons/languageIcons.spec.ts +184 -184
- package/images/bloop.png +0 -0
package/src/icons/fileIcons.ts
CHANGED
|
@@ -1,2197 +1,2240 @@
|
|
|
1
|
-
import { FileIcons, IconPack } from '../models/index';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Defines file icons
|
|
5
|
-
*/
|
|
6
|
-
export const fileIcons: FileIcons = {
|
|
7
|
-
defaultIcon: { name: 'file' },
|
|
8
|
-
icons: [
|
|
9
|
-
{ name: 'html', fileExtensions: ['htm', 'xhtml', 'html_vm', 'asp'] },
|
|
10
|
-
{
|
|
11
|
-
name: 'pug',
|
|
12
|
-
fileExtensions: ['jade', 'pug'],
|
|
13
|
-
fileNames: ['.pug-lintrc', '.pug-lintrc.js', '.pug-lintrc.json'],
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
name: 'markdown',
|
|
17
|
-
fileExtensions: ['md', 'markdown', 'rst'],
|
|
18
|
-
},
|
|
19
|
-
{ name: 'blink', fileExtensions: ['blink'], light: true },
|
|
20
|
-
{ name: 'css', fileExtensions: ['css'] },
|
|
21
|
-
{ name: 'sass', fileExtensions: ['scss', 'sass'] },
|
|
22
|
-
{ name: 'less', fileExtensions: ['less'] },
|
|
23
|
-
{
|
|
24
|
-
name: 'json',
|
|
25
|
-
fileExtensions: [
|
|
26
|
-
'json',
|
|
27
|
-
'jsonc',
|
|
28
|
-
'tsbuildinfo',
|
|
29
|
-
'json5',
|
|
30
|
-
'jsonl',
|
|
31
|
-
'ndjson',
|
|
32
|
-
],
|
|
33
|
-
fileNames: [
|
|
34
|
-
'.jscsrc',
|
|
35
|
-
'.jshintrc',
|
|
36
|
-
'composer.lock',
|
|
37
|
-
'.jsbeautifyrc',
|
|
38
|
-
'.esformatter',
|
|
39
|
-
'cdp.pid',
|
|
40
|
-
'.lintstagedrc',
|
|
41
|
-
],
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
name: 'jinja',
|
|
45
|
-
fileExtensions: ['jinja', 'jinja2', 'j2', 'jinja-html'],
|
|
46
|
-
light: true,
|
|
47
|
-
},
|
|
48
|
-
{ name: 'proto', fileExtensions: ['proto'] },
|
|
49
|
-
{
|
|
50
|
-
name: 'playwright',
|
|
51
|
-
fileNames: [
|
|
52
|
-
'playwright.config.js',
|
|
53
|
-
'playwright.config.mjs',
|
|
54
|
-
'playwright.config.ts',
|
|
55
|
-
'playwright-ct.config.js',
|
|
56
|
-
'playwright-ct.config.mjs',
|
|
57
|
-
'playwright-ct.config.ts',
|
|
58
|
-
],
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
name: 'sublime',
|
|
62
|
-
fileExtensions: ['sublime-project', 'sublime-workspace'],
|
|
63
|
-
},
|
|
64
|
-
{ name: 'twine', fileExtensions: ['tw', 'twee'] },
|
|
65
|
-
{
|
|
66
|
-
name: 'yaml',
|
|
67
|
-
fileExtensions: [
|
|
68
|
-
'yml',
|
|
69
|
-
'yaml',
|
|
70
|
-
'yml.dist',
|
|
71
|
-
'yaml.dist',
|
|
72
|
-
'YAML-tmLanguage',
|
|
73
|
-
],
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
name: 'xml',
|
|
77
|
-
fileExtensions: [
|
|
78
|
-
'xml',
|
|
79
|
-
'plist',
|
|
80
|
-
'xsd',
|
|
81
|
-
'dtd',
|
|
82
|
-
'xsl',
|
|
83
|
-
'xslt',
|
|
84
|
-
'resx',
|
|
85
|
-
'iml',
|
|
86
|
-
'xquery',
|
|
87
|
-
'tmLanguage',
|
|
88
|
-
'manifest',
|
|
89
|
-
'project',
|
|
90
|
-
'xml.dist',
|
|
91
|
-
'xml.dist.sample',
|
|
92
|
-
'dmn',
|
|
93
|
-
'jrxml',
|
|
94
|
-
],
|
|
95
|
-
fileNames: ['.htaccess'],
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
name: 'image',
|
|
99
|
-
fileExtensions: [
|
|
100
|
-
'png',
|
|
101
|
-
'jpeg',
|
|
102
|
-
'jpg',
|
|
103
|
-
'gif',
|
|
104
|
-
'ico',
|
|
105
|
-
'tif',
|
|
106
|
-
'tiff',
|
|
107
|
-
'psd',
|
|
108
|
-
'psb',
|
|
109
|
-
'ami',
|
|
110
|
-
'apx',
|
|
111
|
-
'avif',
|
|
112
|
-
'bmp',
|
|
113
|
-
'bpg',
|
|
114
|
-
'brk',
|
|
115
|
-
'cur',
|
|
116
|
-
'dds',
|
|
117
|
-
'dng',
|
|
118
|
-
'exr',
|
|
119
|
-
'fpx',
|
|
120
|
-
'gbr',
|
|
121
|
-
'img',
|
|
122
|
-
'jbig2',
|
|
123
|
-
'jb2',
|
|
124
|
-
'jng',
|
|
125
|
-
'jxr',
|
|
126
|
-
'pgf',
|
|
127
|
-
'pic',
|
|
128
|
-
'raw',
|
|
129
|
-
'webp',
|
|
130
|
-
'eps',
|
|
131
|
-
'afphoto',
|
|
132
|
-
'ase',
|
|
133
|
-
'aseprite',
|
|
134
|
-
'clip',
|
|
135
|
-
'cpt',
|
|
136
|
-
'heif',
|
|
137
|
-
'heic',
|
|
138
|
-
'kra',
|
|
139
|
-
'mdp',
|
|
140
|
-
'ora',
|
|
141
|
-
'pdn',
|
|
142
|
-
'reb',
|
|
143
|
-
'sai',
|
|
144
|
-
'tga',
|
|
145
|
-
'xcf',
|
|
146
|
-
'jfif',
|
|
147
|
-
'ppm',
|
|
148
|
-
'pbm',
|
|
149
|
-
'pgm',
|
|
150
|
-
'pnm',
|
|
151
|
-
'icns',
|
|
152
|
-
],
|
|
153
|
-
},
|
|
154
|
-
{ name: 'javascript', fileExtensions: ['esx', 'mjs'] },
|
|
155
|
-
{ name: 'react', fileExtensions: ['jsx'] },
|
|
156
|
-
{ name: 'react_ts', fileExtensions: ['tsx'] },
|
|
157
|
-
{
|
|
158
|
-
name: 'routing',
|
|
159
|
-
fileExtensions: [
|
|
160
|
-
'routing.ts',
|
|
161
|
-
'routing.tsx',
|
|
162
|
-
'routing.js',
|
|
163
|
-
'routing.jsx',
|
|
164
|
-
'routes.ts',
|
|
165
|
-
'routes.tsx',
|
|
166
|
-
'routes.js',
|
|
167
|
-
'routes.jsx',
|
|
168
|
-
],
|
|
169
|
-
fileNames: [
|
|
170
|
-
'router.js',
|
|
171
|
-
'router.jsx',
|
|
172
|
-
'router.ts',
|
|
173
|
-
'router.tsx',
|
|
174
|
-
'routes.js',
|
|
175
|
-
'routes.jsx',
|
|
176
|
-
'routes.ts',
|
|
177
|
-
'routes.tsx',
|
|
178
|
-
],
|
|
179
|
-
enabledFor: [
|
|
180
|
-
IconPack.Angular,
|
|
181
|
-
IconPack.Ngrx,
|
|
182
|
-
IconPack.React,
|
|
183
|
-
IconPack.Redux,
|
|
184
|
-
IconPack.Vue,
|
|
185
|
-
IconPack.Vuex,
|
|
186
|
-
],
|
|
187
|
-
},
|
|
188
|
-
{
|
|
189
|
-
name: 'redux-action',
|
|
190
|
-
fileExtensions: ['action.js', 'actions.js', 'action.ts', 'actions.ts'],
|
|
191
|
-
fileNames: ['action.js', 'actions.js', 'action.ts', 'actions.ts'],
|
|
192
|
-
enabledFor: [IconPack.Redux],
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
name: 'redux-reducer',
|
|
196
|
-
fileExtensions: [
|
|
197
|
-
'reducer.js',
|
|
198
|
-
'reducers.js',
|
|
199
|
-
'reducer.ts',
|
|
200
|
-
'reducers.ts',
|
|
201
|
-
],
|
|
202
|
-
fileNames: ['reducer.js', 'reducers.js', 'reducer.ts', 'reducers.ts'],
|
|
203
|
-
enabledFor: [IconPack.Redux],
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
name: 'redux-selector',
|
|
207
|
-
fileExtensions: [
|
|
208
|
-
'selector.js',
|
|
209
|
-
'selectors.js',
|
|
210
|
-
'selector.ts',
|
|
211
|
-
'selectors.ts',
|
|
212
|
-
],
|
|
213
|
-
fileNames: ['selector.js', 'selectors.js', 'selector.ts', 'selectors.ts'],
|
|
214
|
-
enabledFor: [IconPack.Redux],
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
name: 'redux-store',
|
|
218
|
-
fileExtensions: ['store.js', 'store.ts'],
|
|
219
|
-
fileNames: ['store.js', 'store.ts'],
|
|
220
|
-
enabledFor: [IconPack.Redux],
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
name: 'settings',
|
|
224
|
-
fileExtensions: [
|
|
225
|
-
'ini',
|
|
226
|
-
'dlc',
|
|
227
|
-
'dll',
|
|
228
|
-
'config',
|
|
229
|
-
'conf',
|
|
230
|
-
'properties',
|
|
231
|
-
'prop',
|
|
232
|
-
'settings',
|
|
233
|
-
'option',
|
|
234
|
-
'props',
|
|
235
|
-
'toml',
|
|
236
|
-
'prefs',
|
|
237
|
-
'sln.dotsettings',
|
|
238
|
-
'sln.dotsettings.user',
|
|
239
|
-
'cfg',
|
|
240
|
-
],
|
|
241
|
-
fileNames: [
|
|
242
|
-
'.jshintignore',
|
|
243
|
-
'.buildignore',
|
|
244
|
-
'.mrconfig',
|
|
245
|
-
'.yardopts',
|
|
246
|
-
'manifest.mf',
|
|
247
|
-
'.clang-format',
|
|
248
|
-
'.clang-tidy',
|
|
249
|
-
],
|
|
250
|
-
},
|
|
251
|
-
{
|
|
252
|
-
name: 'typescript-def',
|
|
253
|
-
fileExtensions: ['d.ts', 'd.cts', 'd.mts'],
|
|
254
|
-
},
|
|
255
|
-
{ name: 'markojs', fileExtensions: ['marko'] },
|
|
256
|
-
{
|
|
257
|
-
name: 'astro',
|
|
258
|
-
fileExtensions: ['astro'],
|
|
259
|
-
fileNames: [
|
|
260
|
-
'astro.config.js',
|
|
261
|
-
'astro.config.mjs',
|
|
262
|
-
'astro.config.cjs',
|
|
263
|
-
'astro.config.ts',
|
|
264
|
-
'astro.config.cts',
|
|
265
|
-
'astro.config.mts',
|
|
266
|
-
],
|
|
267
|
-
},
|
|
268
|
-
{ name: 'pdf', fileExtensions: ['pdf'] },
|
|
269
|
-
{
|
|
270
|
-
name: 'table',
|
|
271
|
-
fileExtensions: ['xlsx', 'xlsm', 'xls', 'csv', 'tsv', 'psv', 'ods'],
|
|
272
|
-
},
|
|
273
|
-
{
|
|
274
|
-
name: 'vscode',
|
|
275
|
-
fileExtensions: [
|
|
276
|
-
'vscodeignore',
|
|
277
|
-
'vsixmanifest',
|
|
278
|
-
'vsix',
|
|
279
|
-
'code-workplace',
|
|
280
|
-
'code-workspace',
|
|
281
|
-
'code-profile',
|
|
282
|
-
'code-snippets',
|
|
283
|
-
],
|
|
284
|
-
},
|
|
285
|
-
{
|
|
286
|
-
name: 'visualstudio',
|
|
287
|
-
fileExtensions: [
|
|
288
|
-
'csproj',
|
|
289
|
-
'ruleset',
|
|
290
|
-
'sln',
|
|
291
|
-
'suo',
|
|
292
|
-
'vb',
|
|
293
|
-
'vbs',
|
|
294
|
-
'vcxitems',
|
|
295
|
-
'vcxitems.filters',
|
|
296
|
-
'vcxproj',
|
|
297
|
-
'vcxproj.filters',
|
|
298
|
-
],
|
|
299
|
-
},
|
|
300
|
-
{
|
|
301
|
-
name: 'database',
|
|
302
|
-
fileExtensions: [
|
|
303
|
-
'pdb',
|
|
304
|
-
'sql',
|
|
305
|
-
'pks',
|
|
306
|
-
'pkb',
|
|
307
|
-
'accdb',
|
|
308
|
-
'mdb',
|
|
309
|
-
'sqlite',
|
|
310
|
-
'sqlite3',
|
|
311
|
-
'pgsql',
|
|
312
|
-
'postgres',
|
|
313
|
-
'psql',
|
|
314
|
-
'db',
|
|
315
|
-
'db3',
|
|
316
|
-
],
|
|
317
|
-
},
|
|
318
|
-
{ name: 'kusto', fileExtensions: ['kql'] },
|
|
319
|
-
{ name: 'csharp', fileExtensions: ['cs', 'csx'] },
|
|
320
|
-
{ name: 'qsharp', fileExtensions: ['qs'] },
|
|
321
|
-
{
|
|
322
|
-
name: 'zip',
|
|
323
|
-
fileExtensions: [
|
|
324
|
-
'zip',
|
|
325
|
-
'tar',
|
|
326
|
-
'gz',
|
|
327
|
-
'xz',
|
|
328
|
-
'lzma',
|
|
329
|
-
'lz4',
|
|
330
|
-
'br',
|
|
331
|
-
'bz2',
|
|
332
|
-
'bzip2',
|
|
333
|
-
'gzip',
|
|
334
|
-
'brotli',
|
|
335
|
-
'7z',
|
|
336
|
-
'rar',
|
|
337
|
-
'tz',
|
|
338
|
-
'txz',
|
|
339
|
-
'tgz',
|
|
340
|
-
],
|
|
341
|
-
},
|
|
342
|
-
{ name: 'vala', fileExtensions: ['vala'] },
|
|
343
|
-
{ name: 'zig', fileExtensions: ['zig'] },
|
|
344
|
-
{ name: 'exe', fileExtensions: ['exe', 'msi'] },
|
|
345
|
-
{ name: 'hex', fileExtensions: ['dat', 'bin', 'hex'] },
|
|
346
|
-
{ name: 'java', fileExtensions: ['java', 'jsp'] },
|
|
347
|
-
{ name: 'jar', fileExtensions: ['jar'] },
|
|
348
|
-
{ name: 'javaclass', fileExtensions: ['class'] },
|
|
349
|
-
{ name: 'c', fileExtensions: ['c', 'i', 'mi'] },
|
|
350
|
-
{ name: 'h', fileExtensions: ['h'] },
|
|
351
|
-
{
|
|
352
|
-
name: 'cpp',
|
|
353
|
-
fileExtensions: ['cc', 'cpp', 'cxx', 'c++', 'cp', '
|
|
354
|
-
},
|
|
355
|
-
{
|
|
356
|
-
name: 'hpp',
|
|
357
|
-
fileExtensions: ['hh', 'hpp', 'hxx', 'h++', 'hp', 'tcc', 'inl'],
|
|
358
|
-
},
|
|
359
|
-
{ name: '
|
|
360
|
-
{
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
'.
|
|
372
|
-
'
|
|
373
|
-
'
|
|
374
|
-
'.
|
|
375
|
-
'
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
'
|
|
385
|
-
'
|
|
386
|
-
'
|
|
387
|
-
'
|
|
388
|
-
'
|
|
389
|
-
'
|
|
390
|
-
'
|
|
391
|
-
'
|
|
392
|
-
'
|
|
393
|
-
'
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
'copying
|
|
414
|
-
'copying.
|
|
415
|
-
'
|
|
416
|
-
'
|
|
417
|
-
'copyright
|
|
418
|
-
'copyright.
|
|
419
|
-
'
|
|
420
|
-
'
|
|
421
|
-
'license
|
|
422
|
-
'license-
|
|
423
|
-
'license-
|
|
424
|
-
'license-
|
|
425
|
-
'license-
|
|
426
|
-
'license
|
|
427
|
-
'license
|
|
428
|
-
'license.
|
|
429
|
-
'
|
|
430
|
-
'
|
|
431
|
-
'licence
|
|
432
|
-
'licence-
|
|
433
|
-
'licence-
|
|
434
|
-
'licence-
|
|
435
|
-
'licence-
|
|
436
|
-
'licence
|
|
437
|
-
'licence
|
|
438
|
-
'licence.
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
'
|
|
452
|
-
'
|
|
453
|
-
'
|
|
454
|
-
'
|
|
455
|
-
'
|
|
456
|
-
'
|
|
457
|
-
'
|
|
458
|
-
'
|
|
459
|
-
'
|
|
460
|
-
'
|
|
461
|
-
'
|
|
462
|
-
'
|
|
463
|
-
'
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
{ name: '
|
|
469
|
-
{
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
{ name: '
|
|
477
|
-
{
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
'
|
|
483
|
-
'
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
'dockerfile
|
|
489
|
-
'dockerfile.
|
|
490
|
-
'dockerfile.
|
|
491
|
-
'dockerfile.
|
|
492
|
-
'dockerfile.
|
|
493
|
-
'dockerfile.
|
|
494
|
-
'dockerfile.
|
|
495
|
-
'dockerfile.
|
|
496
|
-
'dockerfile.
|
|
497
|
-
'dockerfile.
|
|
498
|
-
'dockerfile.
|
|
499
|
-
'dockerfile.
|
|
500
|
-
'dockerfile.
|
|
501
|
-
|
|
502
|
-
'
|
|
503
|
-
|
|
504
|
-
'docker-compose.
|
|
505
|
-
'docker-compose.
|
|
506
|
-
'docker-compose.
|
|
507
|
-
'docker-compose.
|
|
508
|
-
'docker-compose.
|
|
509
|
-
'docker-compose.
|
|
510
|
-
'docker-compose.
|
|
511
|
-
'docker-compose.
|
|
512
|
-
'docker-compose.
|
|
513
|
-
'docker-compose.
|
|
514
|
-
'docker-compose.
|
|
515
|
-
'docker-compose.
|
|
516
|
-
'docker-compose.
|
|
517
|
-
'docker-compose.
|
|
518
|
-
|
|
519
|
-
'docker-compose.
|
|
520
|
-
|
|
521
|
-
'docker-compose.
|
|
522
|
-
'docker-compose.
|
|
523
|
-
'docker-compose.
|
|
524
|
-
'docker-compose.
|
|
525
|
-
'docker-compose.
|
|
526
|
-
'docker-compose.
|
|
527
|
-
'docker-compose.
|
|
528
|
-
'docker-compose.
|
|
529
|
-
'docker-compose.
|
|
530
|
-
'docker-compose.
|
|
531
|
-
'docker-compose.
|
|
532
|
-
'docker-compose.
|
|
533
|
-
'docker-compose.
|
|
534
|
-
'docker-compose.
|
|
535
|
-
|
|
536
|
-
'compose.yaml',
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
'
|
|
547
|
-
'
|
|
548
|
-
'
|
|
549
|
-
'
|
|
550
|
-
'
|
|
551
|
-
'
|
|
552
|
-
'
|
|
553
|
-
'
|
|
554
|
-
'
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
'
|
|
563
|
-
'
|
|
564
|
-
'
|
|
565
|
-
'
|
|
566
|
-
'
|
|
567
|
-
'
|
|
568
|
-
'
|
|
569
|
-
'
|
|
570
|
-
'
|
|
571
|
-
'
|
|
572
|
-
'
|
|
573
|
-
'
|
|
574
|
-
'
|
|
575
|
-
'
|
|
576
|
-
'
|
|
577
|
-
'
|
|
578
|
-
'
|
|
579
|
-
'
|
|
580
|
-
'
|
|
581
|
-
'
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
{
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
{
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
'.
|
|
599
|
-
'.graphqlrc
|
|
600
|
-
'.graphqlrc.
|
|
601
|
-
'.graphqlrc.
|
|
602
|
-
'.graphqlrc.
|
|
603
|
-
'.graphqlrc.
|
|
604
|
-
'.graphqlrc.
|
|
605
|
-
'
|
|
606
|
-
'
|
|
607
|
-
'graphql.config.
|
|
608
|
-
'graphql.config.
|
|
609
|
-
'graphql.config.
|
|
610
|
-
'graphql.config.
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
{ name: '
|
|
617
|
-
{ name: '
|
|
618
|
-
{ name: '
|
|
619
|
-
{
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
'.
|
|
627
|
-
'.
|
|
628
|
-
'.
|
|
629
|
-
'.
|
|
630
|
-
'.
|
|
631
|
-
'.
|
|
632
|
-
'
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
{ name: '
|
|
644
|
-
{ name: '
|
|
645
|
-
{ name: '
|
|
646
|
-
{
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
'
|
|
663
|
-
'
|
|
664
|
-
'
|
|
665
|
-
'
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
'
|
|
673
|
-
'
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
{ name: '
|
|
704
|
-
{
|
|
705
|
-
name: '
|
|
706
|
-
fileExtensions: [
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
'
|
|
716
|
-
'
|
|
717
|
-
'
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
'
|
|
724
|
-
'test.
|
|
725
|
-
'
|
|
726
|
-
'spec.
|
|
727
|
-
'test.
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
'spec.
|
|
737
|
-
'
|
|
738
|
-
'
|
|
739
|
-
'
|
|
740
|
-
'
|
|
741
|
-
'
|
|
742
|
-
'test.
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
'
|
|
754
|
-
'.
|
|
755
|
-
'
|
|
756
|
-
'
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
{
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
{
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
{ name: '
|
|
803
|
-
{ name: '
|
|
804
|
-
{ name: '
|
|
805
|
-
{ name: '
|
|
806
|
-
{ name: '
|
|
807
|
-
{ name: '
|
|
808
|
-
{ name: '
|
|
809
|
-
{ name: '
|
|
810
|
-
{ name: '
|
|
811
|
-
{ name: '
|
|
812
|
-
{
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
},
|
|
817
|
-
{
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
},
|
|
822
|
-
{
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
{
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
{
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
'
|
|
880
|
-
'.
|
|
881
|
-
'.
|
|
882
|
-
'.
|
|
883
|
-
'.
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
{
|
|
889
|
-
name: '
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
'
|
|
893
|
-
'
|
|
894
|
-
'
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
{
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
'webpack.
|
|
928
|
-
'webpack.
|
|
929
|
-
'webpack.
|
|
930
|
-
'webpack.
|
|
931
|
-
'webpack.
|
|
932
|
-
'webpack.
|
|
933
|
-
'webpack.
|
|
934
|
-
'webpack.
|
|
935
|
-
'webpack.
|
|
936
|
-
'webpack.
|
|
937
|
-
'webpack.
|
|
938
|
-
'webpack.
|
|
939
|
-
'webpack.config.
|
|
940
|
-
'webpack.config.
|
|
941
|
-
'webpack.config.
|
|
942
|
-
'webpack.config.
|
|
943
|
-
'webpack.
|
|
944
|
-
'webpack.
|
|
945
|
-
'webpack.
|
|
946
|
-
'webpack.
|
|
947
|
-
'webpack.
|
|
948
|
-
'webpack.
|
|
949
|
-
'webpack.
|
|
950
|
-
'webpack.
|
|
951
|
-
'webpack.
|
|
952
|
-
'webpack.
|
|
953
|
-
'webpack.
|
|
954
|
-
'webpack.
|
|
955
|
-
'webpack.config.
|
|
956
|
-
'webpack.config.
|
|
957
|
-
'webpack.config.
|
|
958
|
-
'webpack.config.
|
|
959
|
-
'webpack.
|
|
960
|
-
'webpack.
|
|
961
|
-
'webpack.
|
|
962
|
-
'webpack.
|
|
963
|
-
'webpack.
|
|
964
|
-
'webpack.
|
|
965
|
-
'webpack.
|
|
966
|
-
'webpack.
|
|
967
|
-
'webpack.
|
|
968
|
-
'webpack.
|
|
969
|
-
'webpack.
|
|
970
|
-
'webpack.
|
|
971
|
-
'webpack.
|
|
972
|
-
'webpack.
|
|
973
|
-
'webpack.
|
|
974
|
-
'webpack.
|
|
975
|
-
'webpack.
|
|
976
|
-
'webpack.
|
|
977
|
-
'webpack.
|
|
978
|
-
'webpack.
|
|
979
|
-
'webpack.
|
|
980
|
-
'webpack.
|
|
981
|
-
'webpack.
|
|
982
|
-
'webpack.
|
|
983
|
-
'webpack.
|
|
984
|
-
'webpack.
|
|
985
|
-
'webpack.
|
|
986
|
-
'webpack.
|
|
987
|
-
'webpack.
|
|
988
|
-
'webpack.
|
|
989
|
-
'webpack.
|
|
990
|
-
'webpack.
|
|
991
|
-
'webpack.
|
|
992
|
-
'webpack.
|
|
993
|
-
'webpack.
|
|
994
|
-
'webpack.
|
|
995
|
-
'webpack.
|
|
996
|
-
'webpack.
|
|
997
|
-
'webpack.
|
|
998
|
-
'webpack.
|
|
999
|
-
'webpack.
|
|
1000
|
-
'webpack.
|
|
1001
|
-
'webpack.
|
|
1002
|
-
'webpack.
|
|
1003
|
-
'webpack.
|
|
1004
|
-
'webpack.
|
|
1005
|
-
'webpack.
|
|
1006
|
-
'webpack.
|
|
1007
|
-
'webpack.
|
|
1008
|
-
'webpack.
|
|
1009
|
-
'webpack.
|
|
1010
|
-
'webpack.
|
|
1011
|
-
'webpack.
|
|
1012
|
-
'webpack.
|
|
1013
|
-
'webpack.
|
|
1014
|
-
'webpack.
|
|
1015
|
-
'webpack.config.
|
|
1016
|
-
'webpack.config.
|
|
1017
|
-
'webpack.config.
|
|
1018
|
-
'webpack.config.
|
|
1019
|
-
'webpack.config.
|
|
1020
|
-
'webpack.config.
|
|
1021
|
-
'webpack.config.
|
|
1022
|
-
'webpack.config.
|
|
1023
|
-
'webpack.config.
|
|
1024
|
-
'webpack.config.
|
|
1025
|
-
'webpack.config.
|
|
1026
|
-
'webpack.config.
|
|
1027
|
-
'webpack.config.production.
|
|
1028
|
-
'webpack.config.production.ts',
|
|
1029
|
-
'webpack.config.
|
|
1030
|
-
'webpack.config.
|
|
1031
|
-
'webpack.config.
|
|
1032
|
-
'webpack.config.
|
|
1033
|
-
'webpack.config.
|
|
1034
|
-
'webpack.config.
|
|
1035
|
-
'webpack.config.
|
|
1036
|
-
'webpack.config.
|
|
1037
|
-
'webpack.config.
|
|
1038
|
-
'webpack.config.
|
|
1039
|
-
'webpack.config.
|
|
1040
|
-
'webpack.config.
|
|
1041
|
-
'webpack.config.
|
|
1042
|
-
'webpack.config.
|
|
1043
|
-
'webpack.config.
|
|
1044
|
-
'webpack.config.
|
|
1045
|
-
'webpack.config.
|
|
1046
|
-
'webpack.config.
|
|
1047
|
-
'webpack.config.staging.
|
|
1048
|
-
'webpack.config.staging.
|
|
1049
|
-
'webpack.config.
|
|
1050
|
-
'webpack.config.
|
|
1051
|
-
'webpack.config.
|
|
1052
|
-
'webpack.config.
|
|
1053
|
-
'webpack.config.
|
|
1054
|
-
'webpack.config.
|
|
1055
|
-
'webpack.config.
|
|
1056
|
-
'webpack.config.
|
|
1057
|
-
'webpack.config.
|
|
1058
|
-
'webpack.config.
|
|
1059
|
-
'webpack.config.
|
|
1060
|
-
'webpack.config.
|
|
1061
|
-
'webpack.config.
|
|
1062
|
-
'webpack.config.
|
|
1063
|
-
'webpack.config.
|
|
1064
|
-
'webpack.config.
|
|
1065
|
-
'webpack.config.
|
|
1066
|
-
'webpack.config.
|
|
1067
|
-
'webpack.config.
|
|
1068
|
-
'webpack.test.
|
|
1069
|
-
'webpack.test.
|
|
1070
|
-
'webpack.test.
|
|
1071
|
-
'webpack.test.
|
|
1072
|
-
'webpack.
|
|
1073
|
-
'webpack.
|
|
1074
|
-
'webpack.
|
|
1075
|
-
'webpack.
|
|
1076
|
-
'webpack.
|
|
1077
|
-
'webpack.
|
|
1078
|
-
'webpack.
|
|
1079
|
-
'webpack.
|
|
1080
|
-
'
|
|
1081
|
-
'
|
|
1082
|
-
'
|
|
1083
|
-
'
|
|
1084
|
-
'
|
|
1085
|
-
'
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
'
|
|
1093
|
-
'
|
|
1094
|
-
'
|
|
1095
|
-
'
|
|
1096
|
-
'
|
|
1097
|
-
'
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
'.
|
|
1120
|
-
'.
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
'.
|
|
1133
|
-
'.
|
|
1134
|
-
'.
|
|
1135
|
-
'.
|
|
1136
|
-
'.
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
'.env.
|
|
1149
|
-
'.env.
|
|
1150
|
-
'.env.
|
|
1151
|
-
'.env.
|
|
1152
|
-
'.env.
|
|
1153
|
-
'.env.
|
|
1154
|
-
'.env.
|
|
1155
|
-
'.env.
|
|
1156
|
-
'.env.
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
'.
|
|
1168
|
-
'.
|
|
1169
|
-
'.
|
|
1170
|
-
'.
|
|
1171
|
-
'.
|
|
1172
|
-
'
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
'
|
|
1189
|
-
'
|
|
1190
|
-
'.
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
'
|
|
1197
|
-
'
|
|
1198
|
-
'
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
'
|
|
1213
|
-
'
|
|
1214
|
-
'
|
|
1215
|
-
'
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
'
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
'
|
|
1239
|
-
'
|
|
1240
|
-
'
|
|
1241
|
-
'
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
'
|
|
1252
|
-
'
|
|
1253
|
-
'
|
|
1254
|
-
'
|
|
1255
|
-
'
|
|
1256
|
-
'
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
'
|
|
1271
|
-
'.
|
|
1272
|
-
'
|
|
1273
|
-
],
|
|
1274
|
-
},
|
|
1275
|
-
{
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
'.
|
|
1295
|
-
'.
|
|
1296
|
-
'.
|
|
1297
|
-
'.
|
|
1298
|
-
'.
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
},
|
|
1306
|
-
{
|
|
1307
|
-
name: '
|
|
1308
|
-
fileNames: [
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
'.
|
|
1316
|
-
'
|
|
1317
|
-
'
|
|
1318
|
-
'
|
|
1319
|
-
'
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
'
|
|
1366
|
-
'
|
|
1367
|
-
'
|
|
1368
|
-
'
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
'rollup.config.
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
'.
|
|
1387
|
-
'
|
|
1388
|
-
'
|
|
1389
|
-
'.
|
|
1390
|
-
'.
|
|
1391
|
-
'.
|
|
1392
|
-
'.
|
|
1393
|
-
'.
|
|
1394
|
-
'.
|
|
1395
|
-
'.
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
'.
|
|
1407
|
-
'.
|
|
1408
|
-
'.
|
|
1409
|
-
'.
|
|
1410
|
-
'.
|
|
1411
|
-
'.
|
|
1412
|
-
'.
|
|
1413
|
-
'.
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
'
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
},
|
|
1448
|
-
{
|
|
1449
|
-
name: 'ngrx-
|
|
1450
|
-
|
|
1451
|
-
enabledFor: [IconPack.Ngrx],
|
|
1452
|
-
},
|
|
1453
|
-
{
|
|
1454
|
-
name: 'ngrx-
|
|
1455
|
-
fileExtensions: ['
|
|
1456
|
-
enabledFor: [IconPack.Ngrx],
|
|
1457
|
-
},
|
|
1458
|
-
{
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
{
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
],
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
},
|
|
1496
|
-
{ name: '
|
|
1497
|
-
{
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
'
|
|
1502
|
-
'
|
|
1503
|
-
'
|
|
1504
|
-
'
|
|
1505
|
-
'
|
|
1506
|
-
'
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
'
|
|
1524
|
-
'
|
|
1525
|
-
'
|
|
1526
|
-
'
|
|
1527
|
-
'
|
|
1528
|
-
'
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
'jest
|
|
1535
|
-
'jest
|
|
1536
|
-
'jest
|
|
1537
|
-
'jest.
|
|
1538
|
-
'jest.
|
|
1539
|
-
'jest.
|
|
1540
|
-
'.
|
|
1541
|
-
'.
|
|
1542
|
-
'.
|
|
1543
|
-
'jest.
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
'
|
|
1551
|
-
'
|
|
1552
|
-
'
|
|
1553
|
-
'
|
|
1554
|
-
'
|
|
1555
|
-
'
|
|
1556
|
-
'
|
|
1557
|
-
'
|
|
1558
|
-
'
|
|
1559
|
-
'
|
|
1560
|
-
'
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
{ name: '
|
|
1569
|
-
{
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
},
|
|
1592
|
-
{
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
{ name: '
|
|
1600
|
-
{ name: '
|
|
1601
|
-
{ name: '
|
|
1602
|
-
{
|
|
1603
|
-
name: '
|
|
1604
|
-
|
|
1605
|
-
fileNames: [
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
},
|
|
1622
|
-
{ name: '
|
|
1623
|
-
{ name: '
|
|
1624
|
-
{
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
{ name: '
|
|
1630
|
-
{
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
'
|
|
1636
|
-
'
|
|
1637
|
-
'
|
|
1638
|
-
'
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
},
|
|
1660
|
-
{ name: '
|
|
1661
|
-
{
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
'
|
|
1667
|
-
'
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
'
|
|
1684
|
-
'
|
|
1685
|
-
'
|
|
1686
|
-
'
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
},
|
|
1694
|
-
{
|
|
1695
|
-
name: '
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
},
|
|
1704
|
-
{
|
|
1705
|
-
name: '
|
|
1706
|
-
fileExtensions: ['
|
|
1707
|
-
|
|
1708
|
-
},
|
|
1709
|
-
{
|
|
1710
|
-
name: '
|
|
1711
|
-
fileExtensions: ['
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
{
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
{
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
],
|
|
1766
|
-
},
|
|
1767
|
-
{
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
},
|
|
1773
|
-
{ name: '
|
|
1774
|
-
{ name: '
|
|
1775
|
-
{ name: '
|
|
1776
|
-
{ name: '
|
|
1777
|
-
{
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
},
|
|
1782
|
-
{
|
|
1783
|
-
name: '
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
},
|
|
1787
|
-
{
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
'.
|
|
1793
|
-
'.
|
|
1794
|
-
'.
|
|
1795
|
-
'.
|
|
1796
|
-
'.
|
|
1797
|
-
'.
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
],
|
|
1805
|
-
},
|
|
1806
|
-
{ name: '
|
|
1807
|
-
{ name: '
|
|
1808
|
-
{
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
'
|
|
1828
|
-
'
|
|
1829
|
-
'
|
|
1830
|
-
'
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
'
|
|
1845
|
-
'
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
},
|
|
1857
|
-
{
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
{
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
{
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
'
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
'
|
|
1935
|
-
'
|
|
1936
|
-
'
|
|
1937
|
-
'
|
|
1938
|
-
'
|
|
1939
|
-
'
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
{
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
{
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
'.
|
|
1969
|
-
'.
|
|
1970
|
-
'
|
|
1971
|
-
'
|
|
1972
|
-
'
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
},
|
|
1976
|
-
{
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
'.
|
|
1981
|
-
'.
|
|
1982
|
-
'.
|
|
1983
|
-
'.
|
|
1984
|
-
'.
|
|
1985
|
-
],
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
{
|
|
1989
|
-
name: '
|
|
1990
|
-
fileNames: [
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
'
|
|
2002
|
-
'
|
|
2003
|
-
'
|
|
2004
|
-
'
|
|
2005
|
-
'
|
|
2006
|
-
'
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
'
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
{
|
|
2060
|
-
name: '
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
'
|
|
2097
|
-
'
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
'.
|
|
2104
|
-
'
|
|
2105
|
-
'.
|
|
2106
|
-
'
|
|
2107
|
-
'.
|
|
2108
|
-
'
|
|
2109
|
-
'.
|
|
2110
|
-
'
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
'.
|
|
2117
|
-
'
|
|
2118
|
-
'
|
|
2119
|
-
'
|
|
2120
|
-
'
|
|
2121
|
-
'
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
'
|
|
2129
|
-
'
|
|
2130
|
-
'
|
|
2131
|
-
'
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
},
|
|
2147
|
-
{
|
|
2148
|
-
name: '
|
|
2149
|
-
fileNames: [
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
'.
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
{
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
'.
|
|
2193
|
-
'.
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
}
|
|
1
|
+
import { FileIcons, IconPack } from '../models/index';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Defines file icons
|
|
5
|
+
*/
|
|
6
|
+
export const fileIcons: FileIcons = {
|
|
7
|
+
defaultIcon: { name: 'file' },
|
|
8
|
+
icons: [
|
|
9
|
+
{ name: 'html', fileExtensions: ['htm', 'xhtml', 'html_vm', 'asp'] },
|
|
10
|
+
{
|
|
11
|
+
name: 'pug',
|
|
12
|
+
fileExtensions: ['jade', 'pug'],
|
|
13
|
+
fileNames: ['.pug-lintrc', '.pug-lintrc.js', '.pug-lintrc.json'],
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
name: 'markdown',
|
|
17
|
+
fileExtensions: ['md', 'markdown', 'rst'],
|
|
18
|
+
},
|
|
19
|
+
{ name: 'blink', fileExtensions: ['blink'], light: true },
|
|
20
|
+
{ name: 'css', fileExtensions: ['css'] },
|
|
21
|
+
{ name: 'sass', fileExtensions: ['scss', 'sass'] },
|
|
22
|
+
{ name: 'less', fileExtensions: ['less'] },
|
|
23
|
+
{
|
|
24
|
+
name: 'json',
|
|
25
|
+
fileExtensions: [
|
|
26
|
+
'json',
|
|
27
|
+
'jsonc',
|
|
28
|
+
'tsbuildinfo',
|
|
29
|
+
'json5',
|
|
30
|
+
'jsonl',
|
|
31
|
+
'ndjson',
|
|
32
|
+
],
|
|
33
|
+
fileNames: [
|
|
34
|
+
'.jscsrc',
|
|
35
|
+
'.jshintrc',
|
|
36
|
+
'composer.lock',
|
|
37
|
+
'.jsbeautifyrc',
|
|
38
|
+
'.esformatter',
|
|
39
|
+
'cdp.pid',
|
|
40
|
+
'.lintstagedrc',
|
|
41
|
+
],
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
name: 'jinja',
|
|
45
|
+
fileExtensions: ['jinja', 'jinja2', 'j2', 'jinja-html'],
|
|
46
|
+
light: true,
|
|
47
|
+
},
|
|
48
|
+
{ name: 'proto', fileExtensions: ['proto'] },
|
|
49
|
+
{
|
|
50
|
+
name: 'playwright',
|
|
51
|
+
fileNames: [
|
|
52
|
+
'playwright.config.js',
|
|
53
|
+
'playwright.config.mjs',
|
|
54
|
+
'playwright.config.ts',
|
|
55
|
+
'playwright-ct.config.js',
|
|
56
|
+
'playwright-ct.config.mjs',
|
|
57
|
+
'playwright-ct.config.ts',
|
|
58
|
+
],
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
name: 'sublime',
|
|
62
|
+
fileExtensions: ['sublime-project', 'sublime-workspace'],
|
|
63
|
+
},
|
|
64
|
+
{ name: 'twine', fileExtensions: ['tw', 'twee'] },
|
|
65
|
+
{
|
|
66
|
+
name: 'yaml',
|
|
67
|
+
fileExtensions: [
|
|
68
|
+
'yml',
|
|
69
|
+
'yaml',
|
|
70
|
+
'yml.dist',
|
|
71
|
+
'yaml.dist',
|
|
72
|
+
'YAML-tmLanguage',
|
|
73
|
+
],
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
name: 'xml',
|
|
77
|
+
fileExtensions: [
|
|
78
|
+
'xml',
|
|
79
|
+
'plist',
|
|
80
|
+
'xsd',
|
|
81
|
+
'dtd',
|
|
82
|
+
'xsl',
|
|
83
|
+
'xslt',
|
|
84
|
+
'resx',
|
|
85
|
+
'iml',
|
|
86
|
+
'xquery',
|
|
87
|
+
'tmLanguage',
|
|
88
|
+
'manifest',
|
|
89
|
+
'project',
|
|
90
|
+
'xml.dist',
|
|
91
|
+
'xml.dist.sample',
|
|
92
|
+
'dmn',
|
|
93
|
+
'jrxml',
|
|
94
|
+
],
|
|
95
|
+
fileNames: ['.htaccess'],
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
name: 'image',
|
|
99
|
+
fileExtensions: [
|
|
100
|
+
'png',
|
|
101
|
+
'jpeg',
|
|
102
|
+
'jpg',
|
|
103
|
+
'gif',
|
|
104
|
+
'ico',
|
|
105
|
+
'tif',
|
|
106
|
+
'tiff',
|
|
107
|
+
'psd',
|
|
108
|
+
'psb',
|
|
109
|
+
'ami',
|
|
110
|
+
'apx',
|
|
111
|
+
'avif',
|
|
112
|
+
'bmp',
|
|
113
|
+
'bpg',
|
|
114
|
+
'brk',
|
|
115
|
+
'cur',
|
|
116
|
+
'dds',
|
|
117
|
+
'dng',
|
|
118
|
+
'exr',
|
|
119
|
+
'fpx',
|
|
120
|
+
'gbr',
|
|
121
|
+
'img',
|
|
122
|
+
'jbig2',
|
|
123
|
+
'jb2',
|
|
124
|
+
'jng',
|
|
125
|
+
'jxr',
|
|
126
|
+
'pgf',
|
|
127
|
+
'pic',
|
|
128
|
+
'raw',
|
|
129
|
+
'webp',
|
|
130
|
+
'eps',
|
|
131
|
+
'afphoto',
|
|
132
|
+
'ase',
|
|
133
|
+
'aseprite',
|
|
134
|
+
'clip',
|
|
135
|
+
'cpt',
|
|
136
|
+
'heif',
|
|
137
|
+
'heic',
|
|
138
|
+
'kra',
|
|
139
|
+
'mdp',
|
|
140
|
+
'ora',
|
|
141
|
+
'pdn',
|
|
142
|
+
'reb',
|
|
143
|
+
'sai',
|
|
144
|
+
'tga',
|
|
145
|
+
'xcf',
|
|
146
|
+
'jfif',
|
|
147
|
+
'ppm',
|
|
148
|
+
'pbm',
|
|
149
|
+
'pgm',
|
|
150
|
+
'pnm',
|
|
151
|
+
'icns',
|
|
152
|
+
],
|
|
153
|
+
},
|
|
154
|
+
{ name: 'javascript', fileExtensions: ['esx', 'mjs'] },
|
|
155
|
+
{ name: 'react', fileExtensions: ['jsx'] },
|
|
156
|
+
{ name: 'react_ts', fileExtensions: ['tsx'] },
|
|
157
|
+
{
|
|
158
|
+
name: 'routing',
|
|
159
|
+
fileExtensions: [
|
|
160
|
+
'routing.ts',
|
|
161
|
+
'routing.tsx',
|
|
162
|
+
'routing.js',
|
|
163
|
+
'routing.jsx',
|
|
164
|
+
'routes.ts',
|
|
165
|
+
'routes.tsx',
|
|
166
|
+
'routes.js',
|
|
167
|
+
'routes.jsx',
|
|
168
|
+
],
|
|
169
|
+
fileNames: [
|
|
170
|
+
'router.js',
|
|
171
|
+
'router.jsx',
|
|
172
|
+
'router.ts',
|
|
173
|
+
'router.tsx',
|
|
174
|
+
'routes.js',
|
|
175
|
+
'routes.jsx',
|
|
176
|
+
'routes.ts',
|
|
177
|
+
'routes.tsx',
|
|
178
|
+
],
|
|
179
|
+
enabledFor: [
|
|
180
|
+
IconPack.Angular,
|
|
181
|
+
IconPack.Ngrx,
|
|
182
|
+
IconPack.React,
|
|
183
|
+
IconPack.Redux,
|
|
184
|
+
IconPack.Vue,
|
|
185
|
+
IconPack.Vuex,
|
|
186
|
+
],
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
name: 'redux-action',
|
|
190
|
+
fileExtensions: ['action.js', 'actions.js', 'action.ts', 'actions.ts'],
|
|
191
|
+
fileNames: ['action.js', 'actions.js', 'action.ts', 'actions.ts'],
|
|
192
|
+
enabledFor: [IconPack.Redux],
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
name: 'redux-reducer',
|
|
196
|
+
fileExtensions: [
|
|
197
|
+
'reducer.js',
|
|
198
|
+
'reducers.js',
|
|
199
|
+
'reducer.ts',
|
|
200
|
+
'reducers.ts',
|
|
201
|
+
],
|
|
202
|
+
fileNames: ['reducer.js', 'reducers.js', 'reducer.ts', 'reducers.ts'],
|
|
203
|
+
enabledFor: [IconPack.Redux],
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
name: 'redux-selector',
|
|
207
|
+
fileExtensions: [
|
|
208
|
+
'selector.js',
|
|
209
|
+
'selectors.js',
|
|
210
|
+
'selector.ts',
|
|
211
|
+
'selectors.ts',
|
|
212
|
+
],
|
|
213
|
+
fileNames: ['selector.js', 'selectors.js', 'selector.ts', 'selectors.ts'],
|
|
214
|
+
enabledFor: [IconPack.Redux],
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
name: 'redux-store',
|
|
218
|
+
fileExtensions: ['store.js', 'store.ts'],
|
|
219
|
+
fileNames: ['store.js', 'store.ts'],
|
|
220
|
+
enabledFor: [IconPack.Redux],
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
name: 'settings',
|
|
224
|
+
fileExtensions: [
|
|
225
|
+
'ini',
|
|
226
|
+
'dlc',
|
|
227
|
+
'dll',
|
|
228
|
+
'config',
|
|
229
|
+
'conf',
|
|
230
|
+
'properties',
|
|
231
|
+
'prop',
|
|
232
|
+
'settings',
|
|
233
|
+
'option',
|
|
234
|
+
'props',
|
|
235
|
+
'toml',
|
|
236
|
+
'prefs',
|
|
237
|
+
'sln.dotsettings',
|
|
238
|
+
'sln.dotsettings.user',
|
|
239
|
+
'cfg',
|
|
240
|
+
],
|
|
241
|
+
fileNames: [
|
|
242
|
+
'.jshintignore',
|
|
243
|
+
'.buildignore',
|
|
244
|
+
'.mrconfig',
|
|
245
|
+
'.yardopts',
|
|
246
|
+
'manifest.mf',
|
|
247
|
+
'.clang-format',
|
|
248
|
+
'.clang-tidy',
|
|
249
|
+
],
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
name: 'typescript-def',
|
|
253
|
+
fileExtensions: ['d.ts', 'd.cts', 'd.mts'],
|
|
254
|
+
},
|
|
255
|
+
{ name: 'markojs', fileExtensions: ['marko'] },
|
|
256
|
+
{
|
|
257
|
+
name: 'astro',
|
|
258
|
+
fileExtensions: ['astro'],
|
|
259
|
+
fileNames: [
|
|
260
|
+
'astro.config.js',
|
|
261
|
+
'astro.config.mjs',
|
|
262
|
+
'astro.config.cjs',
|
|
263
|
+
'astro.config.ts',
|
|
264
|
+
'astro.config.cts',
|
|
265
|
+
'astro.config.mts',
|
|
266
|
+
],
|
|
267
|
+
},
|
|
268
|
+
{ name: 'pdf', fileExtensions: ['pdf'] },
|
|
269
|
+
{
|
|
270
|
+
name: 'table',
|
|
271
|
+
fileExtensions: ['xlsx', 'xlsm', 'xls', 'csv', 'tsv', 'psv', 'ods'],
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
name: 'vscode',
|
|
275
|
+
fileExtensions: [
|
|
276
|
+
'vscodeignore',
|
|
277
|
+
'vsixmanifest',
|
|
278
|
+
'vsix',
|
|
279
|
+
'code-workplace',
|
|
280
|
+
'code-workspace',
|
|
281
|
+
'code-profile',
|
|
282
|
+
'code-snippets',
|
|
283
|
+
],
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
name: 'visualstudio',
|
|
287
|
+
fileExtensions: [
|
|
288
|
+
'csproj',
|
|
289
|
+
'ruleset',
|
|
290
|
+
'sln',
|
|
291
|
+
'suo',
|
|
292
|
+
'vb',
|
|
293
|
+
'vbs',
|
|
294
|
+
'vcxitems',
|
|
295
|
+
'vcxitems.filters',
|
|
296
|
+
'vcxproj',
|
|
297
|
+
'vcxproj.filters',
|
|
298
|
+
],
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
name: 'database',
|
|
302
|
+
fileExtensions: [
|
|
303
|
+
'pdb',
|
|
304
|
+
'sql',
|
|
305
|
+
'pks',
|
|
306
|
+
'pkb',
|
|
307
|
+
'accdb',
|
|
308
|
+
'mdb',
|
|
309
|
+
'sqlite',
|
|
310
|
+
'sqlite3',
|
|
311
|
+
'pgsql',
|
|
312
|
+
'postgres',
|
|
313
|
+
'psql',
|
|
314
|
+
'db',
|
|
315
|
+
'db3',
|
|
316
|
+
],
|
|
317
|
+
},
|
|
318
|
+
{ name: 'kusto', fileExtensions: ['kql'] },
|
|
319
|
+
{ name: 'csharp', fileExtensions: ['cs', 'csx'] },
|
|
320
|
+
{ name: 'qsharp', fileExtensions: ['qs'] },
|
|
321
|
+
{
|
|
322
|
+
name: 'zip',
|
|
323
|
+
fileExtensions: [
|
|
324
|
+
'zip',
|
|
325
|
+
'tar',
|
|
326
|
+
'gz',
|
|
327
|
+
'xz',
|
|
328
|
+
'lzma',
|
|
329
|
+
'lz4',
|
|
330
|
+
'br',
|
|
331
|
+
'bz2',
|
|
332
|
+
'bzip2',
|
|
333
|
+
'gzip',
|
|
334
|
+
'brotli',
|
|
335
|
+
'7z',
|
|
336
|
+
'rar',
|
|
337
|
+
'tz',
|
|
338
|
+
'txz',
|
|
339
|
+
'tgz',
|
|
340
|
+
],
|
|
341
|
+
},
|
|
342
|
+
{ name: 'vala', fileExtensions: ['vala'] },
|
|
343
|
+
{ name: 'zig', fileExtensions: ['zig'] },
|
|
344
|
+
{ name: 'exe', fileExtensions: ['exe', 'msi'] },
|
|
345
|
+
{ name: 'hex', fileExtensions: ['dat', 'bin', 'hex'] },
|
|
346
|
+
{ name: 'java', fileExtensions: ['java', 'jsp'] },
|
|
347
|
+
{ name: 'jar', fileExtensions: ['jar'] },
|
|
348
|
+
{ name: 'javaclass', fileExtensions: ['class'] },
|
|
349
|
+
{ name: 'c', fileExtensions: ['c', 'i', 'mi'] },
|
|
350
|
+
{ name: 'h', fileExtensions: ['h'] },
|
|
351
|
+
{
|
|
352
|
+
name: 'cpp',
|
|
353
|
+
fileExtensions: ['cc', 'cpp', 'cxx', 'c++', 'cp', 'mii', 'ii'],
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
name: 'hpp',
|
|
357
|
+
fileExtensions: ['hh', 'hpp', 'hxx', 'h++', 'hp', 'tcc', 'inl'],
|
|
358
|
+
},
|
|
359
|
+
{ name: 'objective-c', fileExtensions: ['m'] },
|
|
360
|
+
{ name: 'objective-cpp', fileExtensions: ['mm'] },
|
|
361
|
+
{ name: 'go', fileExtensions: ['go'] },
|
|
362
|
+
{
|
|
363
|
+
name: 'go-mod',
|
|
364
|
+
fileNames: ['go.mod', 'go.sum', 'go.work', 'go.work.sum'],
|
|
365
|
+
},
|
|
366
|
+
{ name: 'python', fileExtensions: ['py'] },
|
|
367
|
+
{
|
|
368
|
+
name: 'python-misc',
|
|
369
|
+
fileExtensions: ['pyc', 'whl'],
|
|
370
|
+
fileNames: [
|
|
371
|
+
'requirements.txt',
|
|
372
|
+
'pipfile',
|
|
373
|
+
'.python-version',
|
|
374
|
+
'manifest.in',
|
|
375
|
+
'pylintrc',
|
|
376
|
+
'.pylintrc',
|
|
377
|
+
'pyproject.toml',
|
|
378
|
+
],
|
|
379
|
+
},
|
|
380
|
+
{ name: 'url', fileExtensions: ['url'] },
|
|
381
|
+
{
|
|
382
|
+
name: 'console',
|
|
383
|
+
fileExtensions: [
|
|
384
|
+
'sh',
|
|
385
|
+
'ksh',
|
|
386
|
+
'csh',
|
|
387
|
+
'tcsh',
|
|
388
|
+
'zsh',
|
|
389
|
+
'bash',
|
|
390
|
+
'bat',
|
|
391
|
+
'cmd',
|
|
392
|
+
'awk',
|
|
393
|
+
'fish',
|
|
394
|
+
'exp',
|
|
395
|
+
'nu',
|
|
396
|
+
],
|
|
397
|
+
fileNames: ['commit-msg', 'pre-commit', 'pre-push', 'post-merge'],
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
name: 'powershell',
|
|
401
|
+
fileExtensions: ['ps1', 'psm1', 'psd1', 'ps1xml', 'psc1', 'pssc'],
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
name: 'gradle',
|
|
405
|
+
fileExtensions: ['gradle'],
|
|
406
|
+
fileNames: ['gradle.properties', 'gradlew', 'gradle-wrapper.properties'],
|
|
407
|
+
},
|
|
408
|
+
{ name: 'word', fileExtensions: ['doc', 'docx', 'rtf', 'odt'] },
|
|
409
|
+
{
|
|
410
|
+
name: 'certificate',
|
|
411
|
+
fileExtensions: ['cer', 'cert', 'crt'],
|
|
412
|
+
fileNames: [
|
|
413
|
+
'copying',
|
|
414
|
+
'copying.md',
|
|
415
|
+
'copying.rst',
|
|
416
|
+
'copying.txt',
|
|
417
|
+
'copyright',
|
|
418
|
+
'copyright.md',
|
|
419
|
+
'copyright.rst',
|
|
420
|
+
'copyright.txt',
|
|
421
|
+
'license',
|
|
422
|
+
'license-agpl',
|
|
423
|
+
'license-apache',
|
|
424
|
+
'license-bsd',
|
|
425
|
+
'license-mit',
|
|
426
|
+
'license-gpl',
|
|
427
|
+
'license-lgpl',
|
|
428
|
+
'license.md',
|
|
429
|
+
'license.rst',
|
|
430
|
+
'license.txt',
|
|
431
|
+
'licence',
|
|
432
|
+
'licence-agpl',
|
|
433
|
+
'licence-apache',
|
|
434
|
+
'licence-bsd',
|
|
435
|
+
'licence-mit',
|
|
436
|
+
'licence-gpl',
|
|
437
|
+
'licence-lgpl',
|
|
438
|
+
'licence.md',
|
|
439
|
+
'licence.rst',
|
|
440
|
+
'licence.txt',
|
|
441
|
+
],
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
name: 'key',
|
|
445
|
+
fileExtensions: ['pub', 'key', 'pem', 'asc', 'gpg', 'passwd'],
|
|
446
|
+
fileNames: ['.htpasswd'],
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
name: 'font',
|
|
450
|
+
fileExtensions: [
|
|
451
|
+
'woff',
|
|
452
|
+
'woff2',
|
|
453
|
+
'ttf',
|
|
454
|
+
'eot',
|
|
455
|
+
'suit',
|
|
456
|
+
'otf',
|
|
457
|
+
'bmap',
|
|
458
|
+
'fnt',
|
|
459
|
+
'odttf',
|
|
460
|
+
'ttc',
|
|
461
|
+
'font',
|
|
462
|
+
'fonts',
|
|
463
|
+
'sui',
|
|
464
|
+
'ntf',
|
|
465
|
+
'mrf',
|
|
466
|
+
],
|
|
467
|
+
},
|
|
468
|
+
{ name: 'lib', fileExtensions: ['lib', 'bib'] },
|
|
469
|
+
{ name: 'ruby', fileExtensions: ['rb', 'erb'] },
|
|
470
|
+
{ name: 'gemfile', fileNames: ['gemfile'] },
|
|
471
|
+
{
|
|
472
|
+
name: 'rubocop',
|
|
473
|
+
fileNames: ['.rubocop.yml', '.rubocop-todo.yml', '.rubocop_todo.yml'],
|
|
474
|
+
light: true,
|
|
475
|
+
},
|
|
476
|
+
{ name: 'fsharp', fileExtensions: ['fs', 'fsx', 'fsi', 'fsproj'] },
|
|
477
|
+
{ name: 'swift', fileExtensions: ['swift'] },
|
|
478
|
+
{ name: 'arduino', fileExtensions: ['ino'] },
|
|
479
|
+
{
|
|
480
|
+
name: 'docker',
|
|
481
|
+
fileExtensions: [
|
|
482
|
+
'dockerignore',
|
|
483
|
+
'dockerfile',
|
|
484
|
+
'docker-compose.yml',
|
|
485
|
+
'docker-compose.yaml',
|
|
486
|
+
],
|
|
487
|
+
fileNames: [
|
|
488
|
+
'dockerfile',
|
|
489
|
+
'dockerfile.prod',
|
|
490
|
+
'dockerfile.production',
|
|
491
|
+
'dockerfile.alpha',
|
|
492
|
+
'dockerfile.beta',
|
|
493
|
+
'dockerfile.stage',
|
|
494
|
+
'dockerfile.staging',
|
|
495
|
+
'dockerfile.dev',
|
|
496
|
+
'dockerfile.development',
|
|
497
|
+
'dockerfile.local',
|
|
498
|
+
'dockerfile.test',
|
|
499
|
+
'dockerfile.testing',
|
|
500
|
+
'dockerfile.ci',
|
|
501
|
+
'dockerfile.web',
|
|
502
|
+
'dockerfile.worker',
|
|
503
|
+
|
|
504
|
+
'docker-compose.yml',
|
|
505
|
+
'docker-compose.override.yml',
|
|
506
|
+
'docker-compose.prod.yml',
|
|
507
|
+
'docker-compose.production.yml',
|
|
508
|
+
'docker-compose.alpha.yml',
|
|
509
|
+
'docker-compose.beta.yml',
|
|
510
|
+
'docker-compose.stage.yml',
|
|
511
|
+
'docker-compose.staging.yml',
|
|
512
|
+
'docker-compose.dev.yml',
|
|
513
|
+
'docker-compose.development.yml',
|
|
514
|
+
'docker-compose.local.yml',
|
|
515
|
+
'docker-compose.test.yml',
|
|
516
|
+
'docker-compose.testing.yml',
|
|
517
|
+
'docker-compose.ci.yml',
|
|
518
|
+
'docker-compose.web.yml',
|
|
519
|
+
'docker-compose.worker.yml',
|
|
520
|
+
|
|
521
|
+
'docker-compose.yaml',
|
|
522
|
+
'docker-compose.override.yaml',
|
|
523
|
+
'docker-compose.prod.yaml',
|
|
524
|
+
'docker-compose.production.yaml',
|
|
525
|
+
'docker-compose.alpha.yaml',
|
|
526
|
+
'docker-compose.beta.yaml',
|
|
527
|
+
'docker-compose.stage.yaml',
|
|
528
|
+
'docker-compose.staging.yaml',
|
|
529
|
+
'docker-compose.dev.yaml',
|
|
530
|
+
'docker-compose.development.yaml',
|
|
531
|
+
'docker-compose.local.yaml',
|
|
532
|
+
'docker-compose.test.yaml',
|
|
533
|
+
'docker-compose.testing.yaml',
|
|
534
|
+
'docker-compose.ci.yaml',
|
|
535
|
+
'docker-compose.web.yaml',
|
|
536
|
+
'docker-compose.worker.yaml',
|
|
537
|
+
|
|
538
|
+
'compose.yaml',
|
|
539
|
+
'compose.yml',
|
|
540
|
+
],
|
|
541
|
+
},
|
|
542
|
+
{ name: 'tex', fileExtensions: ['tex', 'sty', 'dtx', 'ltx'] },
|
|
543
|
+
{
|
|
544
|
+
name: 'powerpoint',
|
|
545
|
+
fileExtensions: [
|
|
546
|
+
'pptx',
|
|
547
|
+
'ppt',
|
|
548
|
+
'pptm',
|
|
549
|
+
'potx',
|
|
550
|
+
'potm',
|
|
551
|
+
'ppsx',
|
|
552
|
+
'ppsm',
|
|
553
|
+
'pps',
|
|
554
|
+
'ppam',
|
|
555
|
+
'ppa',
|
|
556
|
+
'odp',
|
|
557
|
+
],
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
name: 'video',
|
|
561
|
+
fileExtensions: [
|
|
562
|
+
'webm',
|
|
563
|
+
'mkv',
|
|
564
|
+
'flv',
|
|
565
|
+
'vob',
|
|
566
|
+
'ogv',
|
|
567
|
+
'ogg',
|
|
568
|
+
'gifv',
|
|
569
|
+
'avi',
|
|
570
|
+
'mov',
|
|
571
|
+
'qt',
|
|
572
|
+
'wmv',
|
|
573
|
+
'yuv',
|
|
574
|
+
'rm',
|
|
575
|
+
'rmvb',
|
|
576
|
+
'mp4',
|
|
577
|
+
'm4v',
|
|
578
|
+
'mpg',
|
|
579
|
+
'mp2',
|
|
580
|
+
'mpeg',
|
|
581
|
+
'mpe',
|
|
582
|
+
'mpv',
|
|
583
|
+
'm2v',
|
|
584
|
+
],
|
|
585
|
+
},
|
|
586
|
+
{ name: 'virtual', fileExtensions: ['vdi', 'vbox', 'vbox-prev'] },
|
|
587
|
+
{ name: 'email', fileExtensions: ['ics'], fileNames: ['.mailmap'] },
|
|
588
|
+
{
|
|
589
|
+
name: 'audio',
|
|
590
|
+
fileExtensions: ['mp3', 'flac', 'm4a', 'wma', 'aiff', 'wav'],
|
|
591
|
+
},
|
|
592
|
+
{ name: 'coffee', fileExtensions: ['coffee', 'cson', 'iced'] },
|
|
593
|
+
{ name: 'document', fileExtensions: ['txt'] },
|
|
594
|
+
{
|
|
595
|
+
name: 'graphql',
|
|
596
|
+
fileExtensions: ['graphql', 'gql'],
|
|
597
|
+
fileNames: [
|
|
598
|
+
'.graphqlconfig',
|
|
599
|
+
'.graphqlrc',
|
|
600
|
+
'.graphqlrc.json',
|
|
601
|
+
'.graphqlrc.js',
|
|
602
|
+
'.graphqlrc.cjs',
|
|
603
|
+
'.graphqlrc.ts',
|
|
604
|
+
'.graphqlrc.toml',
|
|
605
|
+
'.graphqlrc.yaml',
|
|
606
|
+
'.graphqlrc.yml',
|
|
607
|
+
'graphql.config.json',
|
|
608
|
+
'graphql.config.js',
|
|
609
|
+
'graphql.config.cjs',
|
|
610
|
+
'graphql.config.ts',
|
|
611
|
+
'graphql.config.toml',
|
|
612
|
+
'graphql.config.yaml',
|
|
613
|
+
'graphql.config.yml',
|
|
614
|
+
],
|
|
615
|
+
},
|
|
616
|
+
{ name: 'rust', fileExtensions: ['rs', 'ron'] },
|
|
617
|
+
{ name: 'raml', fileExtensions: ['raml'] },
|
|
618
|
+
{ name: 'xaml', fileExtensions: ['xaml'] },
|
|
619
|
+
{ name: 'haskell', fileExtensions: ['hs'] },
|
|
620
|
+
{ name: 'kotlin', fileExtensions: ['kt', 'kts'] },
|
|
621
|
+
{ name: 'otne', fileExtensions: ['otne'] },
|
|
622
|
+
{
|
|
623
|
+
name: 'git',
|
|
624
|
+
fileExtensions: ['patch'],
|
|
625
|
+
fileNames: [
|
|
626
|
+
'.git',
|
|
627
|
+
'.gitignore',
|
|
628
|
+
'.gitignore-global',
|
|
629
|
+
'.gitignore_global',
|
|
630
|
+
'.gitattributes',
|
|
631
|
+
'.gitattributes-global',
|
|
632
|
+
'.gitattributes_global',
|
|
633
|
+
'.gitconfig',
|
|
634
|
+
'.gitmodules',
|
|
635
|
+
'.gitkeep',
|
|
636
|
+
'.gitinclude',
|
|
637
|
+
'.git-blame-ignore',
|
|
638
|
+
'.git-blame-ignore-revs',
|
|
639
|
+
'.git-for-windows-updater',
|
|
640
|
+
'git-history',
|
|
641
|
+
],
|
|
642
|
+
},
|
|
643
|
+
{ name: 'lua', fileExtensions: ['lua'], fileNames: ['.luacheckrc'] },
|
|
644
|
+
{ name: 'clojure', fileExtensions: ['clj', 'cljs', 'cljc'] },
|
|
645
|
+
{ name: 'groovy', fileExtensions: ['groovy'] },
|
|
646
|
+
{ name: 'r', fileExtensions: ['r', 'rmd'], fileNames: ['.Rhistory'] },
|
|
647
|
+
{ name: 'dart', fileExtensions: ['dart'], fileNames: ['.pubignore'] },
|
|
648
|
+
{ name: 'dart_generated', fileExtensions: ['freezed.dart', 'g.dart'] },
|
|
649
|
+
{ name: 'actionscript', fileExtensions: ['as'] },
|
|
650
|
+
{ name: 'mxml', fileExtensions: ['mxml'] },
|
|
651
|
+
{ name: 'autohotkey', fileExtensions: ['ahk'] },
|
|
652
|
+
{ name: 'flash', fileExtensions: ['swf'] },
|
|
653
|
+
{ name: 'swc', fileExtensions: ['swc'] },
|
|
654
|
+
{
|
|
655
|
+
name: 'cmake',
|
|
656
|
+
fileExtensions: ['cmake'],
|
|
657
|
+
fileNames: ['cmakelists.txt', 'cmakecache.txt'],
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
name: 'assembly',
|
|
661
|
+
fileExtensions: [
|
|
662
|
+
'asm',
|
|
663
|
+
'a51',
|
|
664
|
+
'inc',
|
|
665
|
+
'nasm',
|
|
666
|
+
's',
|
|
667
|
+
'ms',
|
|
668
|
+
'agc',
|
|
669
|
+
'ags',
|
|
670
|
+
'aea',
|
|
671
|
+
'argus',
|
|
672
|
+
'mitigus',
|
|
673
|
+
'binsource',
|
|
674
|
+
],
|
|
675
|
+
},
|
|
676
|
+
{ name: 'vue', fileExtensions: ['vue'] },
|
|
677
|
+
{
|
|
678
|
+
name: 'vue-config',
|
|
679
|
+
fileNames: [
|
|
680
|
+
'vue.config.js',
|
|
681
|
+
'vue.config.ts',
|
|
682
|
+
'vetur.config.js',
|
|
683
|
+
'vetur.config.ts',
|
|
684
|
+
'volar.config.js',
|
|
685
|
+
],
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
name: 'vuex-store',
|
|
689
|
+
fileExtensions: ['store.js', 'store.ts'],
|
|
690
|
+
fileNames: ['store.js', 'store.ts'],
|
|
691
|
+
enabledFor: [IconPack.Vuex],
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
name: 'nuxt',
|
|
695
|
+
fileNames: ['nuxt.config.js', 'nuxt.config.ts', '.nuxtignore'],
|
|
696
|
+
},
|
|
697
|
+
{ name: 'ocaml', fileExtensions: ['ml', 'mli', 'cmx'] },
|
|
698
|
+
{ name: 'odin', fileExtensions: ['odin'] },
|
|
699
|
+
{
|
|
700
|
+
name: 'javascript-map',
|
|
701
|
+
fileExtensions: ['js.map', 'mjs.map', 'cjs.map'],
|
|
702
|
+
},
|
|
703
|
+
{ name: 'css-map', fileExtensions: ['css.map'] },
|
|
704
|
+
{
|
|
705
|
+
name: 'lock',
|
|
706
|
+
fileExtensions: ['lock'],
|
|
707
|
+
fileNames: ['security.md', 'security.txt', 'security'],
|
|
708
|
+
},
|
|
709
|
+
{ name: 'handlebars', fileExtensions: ['hbs', 'mustache'] },
|
|
710
|
+
{ name: 'perl', fileExtensions: ['pm', 'raku'] },
|
|
711
|
+
{ name: 'haxe', fileExtensions: ['hx'] },
|
|
712
|
+
{
|
|
713
|
+
name: 'test-ts',
|
|
714
|
+
fileExtensions: [
|
|
715
|
+
'spec.ts',
|
|
716
|
+
'spec.cts',
|
|
717
|
+
'spec.mts',
|
|
718
|
+
'cy.ts',
|
|
719
|
+
'e2e-spec.ts',
|
|
720
|
+
'e2e-spec.cts',
|
|
721
|
+
'e2e-spec.mts',
|
|
722
|
+
'test.ts',
|
|
723
|
+
'test.cts',
|
|
724
|
+
'test.mts',
|
|
725
|
+
'ts.snap',
|
|
726
|
+
'spec-d.ts',
|
|
727
|
+
'test-d.ts',
|
|
728
|
+
],
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
name: 'test-jsx',
|
|
732
|
+
fileExtensions: [
|
|
733
|
+
'spec.tsx',
|
|
734
|
+
'test.tsx',
|
|
735
|
+
'tsx.snap',
|
|
736
|
+
'spec.jsx',
|
|
737
|
+
'test.jsx',
|
|
738
|
+
'jsx.snap',
|
|
739
|
+
'cy.jsx',
|
|
740
|
+
'cy.tsx',
|
|
741
|
+
'spec-d.tsx',
|
|
742
|
+
'test-d.tsx',
|
|
743
|
+
],
|
|
744
|
+
},
|
|
745
|
+
{
|
|
746
|
+
name: 'test-js',
|
|
747
|
+
fileExtensions: [
|
|
748
|
+
'spec.js',
|
|
749
|
+
'spec.cjs',
|
|
750
|
+
'spec.mjs',
|
|
751
|
+
'e2e-spec.js',
|
|
752
|
+
'e2e-spec.cjs',
|
|
753
|
+
'e2e-spec.mjs',
|
|
754
|
+
'test.js',
|
|
755
|
+
'test.cjs',
|
|
756
|
+
'test.mjs',
|
|
757
|
+
'js.snap',
|
|
758
|
+
'cy.js',
|
|
759
|
+
],
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
name: 'angular',
|
|
763
|
+
fileExtensions: ['module.ts', 'module.js', 'ng-template'],
|
|
764
|
+
fileNames: [
|
|
765
|
+
'angular-cli.json',
|
|
766
|
+
'.angular-cli.json',
|
|
767
|
+
'angular.json',
|
|
768
|
+
'ng-package.json',
|
|
769
|
+
],
|
|
770
|
+
enabledFor: [IconPack.Angular, IconPack.Ngrx],
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
name: 'angular-component',
|
|
774
|
+
fileExtensions: ['component.ts', 'component.js'],
|
|
775
|
+
enabledFor: [IconPack.Angular, IconPack.Ngrx],
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
name: 'angular-guard',
|
|
779
|
+
fileExtensions: ['guard.ts', 'guard.js'],
|
|
780
|
+
enabledFor: [IconPack.Angular, IconPack.Ngrx],
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
name: 'angular-service',
|
|
784
|
+
fileExtensions: ['service.ts', 'service.js'],
|
|
785
|
+
enabledFor: [IconPack.Angular, IconPack.Ngrx],
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
name: 'angular-pipe',
|
|
789
|
+
fileExtensions: ['pipe.ts', 'pipe.js', 'filter.js'],
|
|
790
|
+
enabledFor: [IconPack.Angular, IconPack.Ngrx],
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
name: 'angular-directive',
|
|
794
|
+
fileExtensions: ['directive.ts', 'directive.js'],
|
|
795
|
+
enabledFor: [IconPack.Angular, IconPack.Ngrx],
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
name: 'angular-resolver',
|
|
799
|
+
fileExtensions: ['resolver.ts', 'resolver.js'],
|
|
800
|
+
enabledFor: [IconPack.Angular, IconPack.Ngrx],
|
|
801
|
+
},
|
|
802
|
+
{ name: 'puppet', fileExtensions: ['pp'] },
|
|
803
|
+
{ name: 'elixir', fileExtensions: ['ex', 'exs', 'eex', 'leex', 'heex'] },
|
|
804
|
+
{ name: 'livescript', fileExtensions: ['ls'] },
|
|
805
|
+
{ name: 'erlang', fileExtensions: ['erl'] },
|
|
806
|
+
{ name: 'twig', fileExtensions: ['twig'] },
|
|
807
|
+
{ name: 'julia', fileExtensions: ['jl'] },
|
|
808
|
+
{ name: 'elm', fileExtensions: ['elm'] },
|
|
809
|
+
{ name: 'purescript', fileExtensions: ['pure', 'purs'] },
|
|
810
|
+
{ name: 'smarty', fileExtensions: ['tpl'] },
|
|
811
|
+
{ name: 'stylus', fileExtensions: ['styl'] },
|
|
812
|
+
{ name: 'reason', fileExtensions: ['re', 'rei'] },
|
|
813
|
+
{ name: 'bucklescript', fileExtensions: ['cmj'] },
|
|
814
|
+
{ name: 'merlin', fileExtensions: ['merlin'] },
|
|
815
|
+
{ name: 'verilog', fileExtensions: ['vhd', 'sv', 'svh'] },
|
|
816
|
+
{ name: 'mathematica', fileExtensions: ['nb'] },
|
|
817
|
+
{ name: 'wolframlanguage', fileExtensions: ['wl', 'wls'] },
|
|
818
|
+
{ name: 'nunjucks', fileExtensions: ['njk', 'nunjucks'] },
|
|
819
|
+
{ name: 'robot', fileExtensions: ['robot'] },
|
|
820
|
+
{ name: 'solidity', fileExtensions: ['sol'] },
|
|
821
|
+
{ name: 'autoit', fileExtensions: ['au3'] },
|
|
822
|
+
{ name: 'haml', fileExtensions: ['haml'] },
|
|
823
|
+
{ name: 'yang', fileExtensions: ['yang'] },
|
|
824
|
+
{
|
|
825
|
+
name: 'mjml',
|
|
826
|
+
fileExtensions: ['mjml'],
|
|
827
|
+
fileNames: ['.mjmlconfig'],
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
name: 'vercel',
|
|
831
|
+
fileNames: ['vercel.json', '.vercelignore', 'now.json', '.nowignore'],
|
|
832
|
+
light: true,
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
name: 'verdaccio',
|
|
836
|
+
fileNames: ['verdaccio.yml'],
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
name: 'next',
|
|
840
|
+
fileNames: [
|
|
841
|
+
'next.config.js',
|
|
842
|
+
'next.config.mjs',
|
|
843
|
+
'next.config.ts',
|
|
844
|
+
'next.config.mts',
|
|
845
|
+
],
|
|
846
|
+
light: true,
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
name: 'remix',
|
|
850
|
+
fileNames: ['remix.config.js', 'remix.config.ts'],
|
|
851
|
+
light: true,
|
|
852
|
+
},
|
|
853
|
+
{
|
|
854
|
+
name: 'terraform',
|
|
855
|
+
fileExtensions: ['tf', 'tf.json', 'tfvars', 'tfstate'],
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
name: 'laravel',
|
|
859
|
+
fileExtensions: ['blade.php', 'inky.php'],
|
|
860
|
+
fileNames: ['artisan'],
|
|
861
|
+
},
|
|
862
|
+
{ name: 'applescript', fileExtensions: ['applescript', 'ipa'] },
|
|
863
|
+
{ name: 'cake', fileExtensions: ['cake'] },
|
|
864
|
+
{ name: 'cucumber', fileExtensions: ['feature', 'features'] },
|
|
865
|
+
{ name: 'nim', fileExtensions: ['nim', 'nimble'] },
|
|
866
|
+
{ name: 'apiblueprint', fileExtensions: ['apib', 'apiblueprint'] },
|
|
867
|
+
{ name: 'riot', fileExtensions: ['riot', 'tag'] },
|
|
868
|
+
{ name: 'vfl', fileExtensions: ['vfl'], fileNames: ['.vfl'] },
|
|
869
|
+
{ name: 'kl', fileExtensions: ['kl'], fileNames: ['.kl'] },
|
|
870
|
+
{
|
|
871
|
+
name: 'postcss',
|
|
872
|
+
fileExtensions: ['pcss', 'sss'],
|
|
873
|
+
fileNames: [
|
|
874
|
+
'postcss.config.js',
|
|
875
|
+
'postcss.config.cjs',
|
|
876
|
+
'postcss.config.ts',
|
|
877
|
+
'postcss.config.cts',
|
|
878
|
+
'.postcssrc.js',
|
|
879
|
+
'.postcssrc.cjs',
|
|
880
|
+
'.postcssrc.ts',
|
|
881
|
+
'.postcssrc.cts',
|
|
882
|
+
'.postcssrc',
|
|
883
|
+
'.postcssrc.json',
|
|
884
|
+
'.postcssrc.yaml',
|
|
885
|
+
'.postcssrc.yml',
|
|
886
|
+
],
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
name: 'posthtml',
|
|
890
|
+
fileNames: [
|
|
891
|
+
'posthtml.config.js',
|
|
892
|
+
'.posthtmlrc.js',
|
|
893
|
+
'.posthtmlrc',
|
|
894
|
+
'.posthtmlrc.json',
|
|
895
|
+
'.posthtmlrc.yml',
|
|
896
|
+
],
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
name: 'todo',
|
|
900
|
+
fileExtensions: ['todo'],
|
|
901
|
+
fileNames: ['todo.md', 'todos.md'],
|
|
902
|
+
},
|
|
903
|
+
{ name: 'coldfusion', fileExtensions: ['cfml', 'cfc', 'lucee', 'cfm'] },
|
|
904
|
+
{
|
|
905
|
+
name: 'cabal',
|
|
906
|
+
fileExtensions: ['cabal'],
|
|
907
|
+
fileNames: [
|
|
908
|
+
'cabal.project',
|
|
909
|
+
'cabal.project.freeze',
|
|
910
|
+
'cabal.project.local',
|
|
911
|
+
],
|
|
912
|
+
},
|
|
913
|
+
{ name: 'nix', fileExtensions: ['nix'] },
|
|
914
|
+
{ name: 'slim', fileExtensions: ['slim'] },
|
|
915
|
+
{ name: 'http', fileExtensions: ['http', 'rest'], fileNames: ['CNAME'] },
|
|
916
|
+
{ name: 'restql', fileExtensions: ['rql', 'restql'] },
|
|
917
|
+
{ name: 'kivy', fileExtensions: ['kv'] },
|
|
918
|
+
{
|
|
919
|
+
name: 'graphcool',
|
|
920
|
+
fileExtensions: ['graphcool'],
|
|
921
|
+
fileNames: ['project.graphcool'],
|
|
922
|
+
},
|
|
923
|
+
{ name: 'sbt', fileExtensions: ['sbt'] },
|
|
924
|
+
{
|
|
925
|
+
name: 'webpack',
|
|
926
|
+
fileNames: [
|
|
927
|
+
'webpack.js',
|
|
928
|
+
'webpack.cjs',
|
|
929
|
+
'webpack.mjs',
|
|
930
|
+
'webpack.ts',
|
|
931
|
+
'webpack.cts',
|
|
932
|
+
'webpack.mts',
|
|
933
|
+
'webpack.base.js',
|
|
934
|
+
'webpack.base.cjs',
|
|
935
|
+
'webpack.base.mjs',
|
|
936
|
+
'webpack.base.ts',
|
|
937
|
+
'webpack.base.cts',
|
|
938
|
+
'webpack.base.mts',
|
|
939
|
+
'webpack.config.js',
|
|
940
|
+
'webpack.config.cjs',
|
|
941
|
+
'webpack.config.mjs',
|
|
942
|
+
'webpack.config.ts',
|
|
943
|
+
'webpack.config.cts',
|
|
944
|
+
'webpack.config.mts',
|
|
945
|
+
'webpack.common.js',
|
|
946
|
+
'webpack.common.cjs',
|
|
947
|
+
'webpack.common.mjs',
|
|
948
|
+
'webpack.common.ts',
|
|
949
|
+
'webpack.common.cts',
|
|
950
|
+
'webpack.common.mts',
|
|
951
|
+
'webpack.config.common.js',
|
|
952
|
+
'webpack.config.common.cjs',
|
|
953
|
+
'webpack.config.common.mjs',
|
|
954
|
+
'webpack.config.common.ts',
|
|
955
|
+
'webpack.config.common.cts',
|
|
956
|
+
'webpack.config.common.mts',
|
|
957
|
+
'webpack.config.common.babel.js',
|
|
958
|
+
'webpack.config.common.babel.ts',
|
|
959
|
+
'webpack.dev.js',
|
|
960
|
+
'webpack.dev.cjs',
|
|
961
|
+
'webpack.dev.mjs',
|
|
962
|
+
'webpack.dev.ts',
|
|
963
|
+
'webpack.dev.cts',
|
|
964
|
+
'webpack.dev.mts',
|
|
965
|
+
'webpack.development.js',
|
|
966
|
+
'webpack.development.cjs',
|
|
967
|
+
'webpack.development.mjs',
|
|
968
|
+
'webpack.development.ts',
|
|
969
|
+
'webpack.development.cts',
|
|
970
|
+
'webpack.development.mts',
|
|
971
|
+
'webpack.config.dev.js',
|
|
972
|
+
'webpack.config.dev.cjs',
|
|
973
|
+
'webpack.config.dev.mjs',
|
|
974
|
+
'webpack.config.dev.ts',
|
|
975
|
+
'webpack.config.dev.cts',
|
|
976
|
+
'webpack.config.dev.mts',
|
|
977
|
+
'webpack.config.dev.babel.js',
|
|
978
|
+
'webpack.config.dev.babel.ts',
|
|
979
|
+
'webpack.mix.js',
|
|
980
|
+
'webpack.mix.cjs',
|
|
981
|
+
'webpack.mix.mjs',
|
|
982
|
+
'webpack.mix.ts',
|
|
983
|
+
'webpack.mix.cts',
|
|
984
|
+
'webpack.mix.mts',
|
|
985
|
+
'webpack.prod.js',
|
|
986
|
+
'webpack.prod.cjs',
|
|
987
|
+
'webpack.prod.mjs',
|
|
988
|
+
'webpack.prod.ts',
|
|
989
|
+
'webpack.prod.cts',
|
|
990
|
+
'webpack.prod.mts',
|
|
991
|
+
'webpack.prod.config.js',
|
|
992
|
+
'webpack.prod.config.cjs',
|
|
993
|
+
'webpack.prod.config.mjs',
|
|
994
|
+
'webpack.prod.config.ts',
|
|
995
|
+
'webpack.prod.config.cts',
|
|
996
|
+
'webpack.prod.config.mts',
|
|
997
|
+
'webpack.production.js',
|
|
998
|
+
'webpack.production.cjs',
|
|
999
|
+
'webpack.production.mjs',
|
|
1000
|
+
'webpack.production.ts',
|
|
1001
|
+
'webpack.production.cts',
|
|
1002
|
+
'webpack.production.mts',
|
|
1003
|
+
'webpack.server.js',
|
|
1004
|
+
'webpack.server.cjs',
|
|
1005
|
+
'webpack.server.mjs',
|
|
1006
|
+
'webpack.server.ts',
|
|
1007
|
+
'webpack.server.cts',
|
|
1008
|
+
'webpack.server.mts',
|
|
1009
|
+
'webpack.client.js',
|
|
1010
|
+
'webpack.client.cjs',
|
|
1011
|
+
'webpack.client.mjs',
|
|
1012
|
+
'webpack.client.ts',
|
|
1013
|
+
'webpack.client.cts',
|
|
1014
|
+
'webpack.client.mts',
|
|
1015
|
+
'webpack.config.server.js',
|
|
1016
|
+
'webpack.config.server.cjs',
|
|
1017
|
+
'webpack.config.server.mjs',
|
|
1018
|
+
'webpack.config.server.ts',
|
|
1019
|
+
'webpack.config.server.cts',
|
|
1020
|
+
'webpack.config.server.mts',
|
|
1021
|
+
'webpack.config.client.js',
|
|
1022
|
+
'webpack.config.client.cjs',
|
|
1023
|
+
'webpack.config.client.mjs',
|
|
1024
|
+
'webpack.config.client.ts',
|
|
1025
|
+
'webpack.config.client.cts',
|
|
1026
|
+
'webpack.config.client.mts',
|
|
1027
|
+
'webpack.config.production.babel.js',
|
|
1028
|
+
'webpack.config.production.babel.ts',
|
|
1029
|
+
'webpack.config.prod.babel.js',
|
|
1030
|
+
'webpack.config.prod.babel.cjs',
|
|
1031
|
+
'webpack.config.prod.babel.mjs',
|
|
1032
|
+
'webpack.config.prod.babel.ts',
|
|
1033
|
+
'webpack.config.prod.babel.cts',
|
|
1034
|
+
'webpack.config.prod.babel.mts',
|
|
1035
|
+
'webpack.config.prod.js',
|
|
1036
|
+
'webpack.config.prod.cjs',
|
|
1037
|
+
'webpack.config.prod.mjs',
|
|
1038
|
+
'webpack.config.prod.ts',
|
|
1039
|
+
'webpack.config.prod.cts',
|
|
1040
|
+
'webpack.config.prod.mts',
|
|
1041
|
+
'webpack.config.production.js',
|
|
1042
|
+
'webpack.config.production.cjs',
|
|
1043
|
+
'webpack.config.production.mjs',
|
|
1044
|
+
'webpack.config.production.ts',
|
|
1045
|
+
'webpack.config.production.cts',
|
|
1046
|
+
'webpack.config.production.mts',
|
|
1047
|
+
'webpack.config.staging.js',
|
|
1048
|
+
'webpack.config.staging.cjs',
|
|
1049
|
+
'webpack.config.staging.mjs',
|
|
1050
|
+
'webpack.config.staging.ts',
|
|
1051
|
+
'webpack.config.staging.cts',
|
|
1052
|
+
'webpack.config.staging.mts',
|
|
1053
|
+
'webpack.config.babel.js',
|
|
1054
|
+
'webpack.config.babel.ts',
|
|
1055
|
+
'webpack.config.base.babel.js',
|
|
1056
|
+
'webpack.config.base.babel.ts',
|
|
1057
|
+
'webpack.config.base.js',
|
|
1058
|
+
'webpack.config.base.cjs',
|
|
1059
|
+
'webpack.config.base.mjs',
|
|
1060
|
+
'webpack.config.base.ts',
|
|
1061
|
+
'webpack.config.base.cts',
|
|
1062
|
+
'webpack.config.base.mts',
|
|
1063
|
+
'webpack.config.staging.babel.js',
|
|
1064
|
+
'webpack.config.staging.babel.ts',
|
|
1065
|
+
'webpack.config.coffee',
|
|
1066
|
+
'webpack.config.test.js',
|
|
1067
|
+
'webpack.config.test.cjs',
|
|
1068
|
+
'webpack.config.test.mjs',
|
|
1069
|
+
'webpack.config.test.ts',
|
|
1070
|
+
'webpack.config.test.cts',
|
|
1071
|
+
'webpack.config.test.mts',
|
|
1072
|
+
'webpack.config.vendor.js',
|
|
1073
|
+
'webpack.config.vendor.cjs',
|
|
1074
|
+
'webpack.config.vendor.mjs',
|
|
1075
|
+
'webpack.config.vendor.ts',
|
|
1076
|
+
'webpack.config.vendor.cts',
|
|
1077
|
+
'webpack.config.vendor.mts',
|
|
1078
|
+
'webpack.config.vendor.production.js',
|
|
1079
|
+
'webpack.config.vendor.production.cjs',
|
|
1080
|
+
'webpack.config.vendor.production.mjs',
|
|
1081
|
+
'webpack.config.vendor.production.ts',
|
|
1082
|
+
'webpack.config.vendor.production.cts',
|
|
1083
|
+
'webpack.config.vendor.production.mts',
|
|
1084
|
+
'webpack.test.js',
|
|
1085
|
+
'webpack.test.cjs',
|
|
1086
|
+
'webpack.test.mjs',
|
|
1087
|
+
'webpack.test.ts',
|
|
1088
|
+
'webpack.test.cts',
|
|
1089
|
+
'webpack.test.mts',
|
|
1090
|
+
'webpack.dist.js',
|
|
1091
|
+
'webpack.dist.cjs',
|
|
1092
|
+
'webpack.dist.mjs',
|
|
1093
|
+
'webpack.dist.ts',
|
|
1094
|
+
'webpack.dist.cts',
|
|
1095
|
+
'webpack.dist.mts',
|
|
1096
|
+
'webpackfile.js',
|
|
1097
|
+
'webpackfile.cjs',
|
|
1098
|
+
'webpackfile.mjs',
|
|
1099
|
+
'webpackfile.ts',
|
|
1100
|
+
'webpackfile.cts',
|
|
1101
|
+
'webpackfile.mts',
|
|
1102
|
+
],
|
|
1103
|
+
},
|
|
1104
|
+
{ name: 'ionic', fileNames: ['ionic.config.json', '.io-config.json'] },
|
|
1105
|
+
{
|
|
1106
|
+
name: 'gulp',
|
|
1107
|
+
fileNames: [
|
|
1108
|
+
'gulpfile.js',
|
|
1109
|
+
'gulpfile.mjs',
|
|
1110
|
+
'gulpfile.ts',
|
|
1111
|
+
'gulpfile.cts',
|
|
1112
|
+
'gulpfile.mts',
|
|
1113
|
+
'gulpfile.babel.js',
|
|
1114
|
+
],
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
name: 'nodejs',
|
|
1118
|
+
fileNames: [
|
|
1119
|
+
'package.json',
|
|
1120
|
+
'package-lock.json',
|
|
1121
|
+
'.nvmrc',
|
|
1122
|
+
'.esmrc',
|
|
1123
|
+
'.node-version',
|
|
1124
|
+
],
|
|
1125
|
+
},
|
|
1126
|
+
{ name: 'npm', fileNames: ['.npmignore', '.npmrc'] },
|
|
1127
|
+
{
|
|
1128
|
+
name: 'yarn',
|
|
1129
|
+
fileNames: [
|
|
1130
|
+
'.yarnrc',
|
|
1131
|
+
'yarn.lock',
|
|
1132
|
+
'.yarnclean',
|
|
1133
|
+
'.yarn-integrity',
|
|
1134
|
+
'yarn-error.log',
|
|
1135
|
+
'.yarnrc.yml',
|
|
1136
|
+
'.yarnrc.yaml',
|
|
1137
|
+
],
|
|
1138
|
+
},
|
|
1139
|
+
{
|
|
1140
|
+
name: 'android',
|
|
1141
|
+
fileNames: ['androidmanifest.xml'],
|
|
1142
|
+
fileExtensions: ['apk', 'smali', 'dex'],
|
|
1143
|
+
},
|
|
1144
|
+
{
|
|
1145
|
+
name: 'tune',
|
|
1146
|
+
fileExtensions: ['env'],
|
|
1147
|
+
fileNames: [
|
|
1148
|
+
'.env.defaults',
|
|
1149
|
+
'.env.example',
|
|
1150
|
+
'.env.sample',
|
|
1151
|
+
'.env.template',
|
|
1152
|
+
'.env.schema',
|
|
1153
|
+
'.env.local',
|
|
1154
|
+
'.env.dev',
|
|
1155
|
+
'.env.development',
|
|
1156
|
+
'.env.alpha',
|
|
1157
|
+
'.env.e2e',
|
|
1158
|
+
'.env.qa',
|
|
1159
|
+
'.env.dist',
|
|
1160
|
+
'.env.prod',
|
|
1161
|
+
'.env.production',
|
|
1162
|
+
'.env.stage',
|
|
1163
|
+
'.env.staging',
|
|
1164
|
+
'.env.preview',
|
|
1165
|
+
'.env.test',
|
|
1166
|
+
'.env.testing',
|
|
1167
|
+
'.env.development.local',
|
|
1168
|
+
'.env.qa.local',
|
|
1169
|
+
'.env.production.local',
|
|
1170
|
+
'.env.staging.local',
|
|
1171
|
+
'.env.test.local',
|
|
1172
|
+
'.env.uat',
|
|
1173
|
+
],
|
|
1174
|
+
},
|
|
1175
|
+
{
|
|
1176
|
+
name: 'turborepo',
|
|
1177
|
+
light: true,
|
|
1178
|
+
fileNames: ['turbo.json'],
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
name: 'babel',
|
|
1182
|
+
fileNames: [
|
|
1183
|
+
'.babelrc',
|
|
1184
|
+
'.babelrc.cjs',
|
|
1185
|
+
'.babelrc.js',
|
|
1186
|
+
'.babelrc.mjs',
|
|
1187
|
+
'.babelrc.json',
|
|
1188
|
+
'babel.config.cjs',
|
|
1189
|
+
'babel.config.js',
|
|
1190
|
+
'babel.config.mjs',
|
|
1191
|
+
'babel.config.json',
|
|
1192
|
+
'babel-transform.js',
|
|
1193
|
+
'.babel-plugin-macrosrc',
|
|
1194
|
+
'.babel-plugin-macrosrc.json',
|
|
1195
|
+
'.babel-plugin-macrosrc.yaml',
|
|
1196
|
+
'.babel-plugin-macrosrc.yml',
|
|
1197
|
+
'.babel-plugin-macrosrc.js',
|
|
1198
|
+
'babel-plugin-macros.config.js',
|
|
1199
|
+
],
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
name: 'blitz',
|
|
1203
|
+
fileNames: [
|
|
1204
|
+
'blitz.config.js',
|
|
1205
|
+
'blitz.config.ts',
|
|
1206
|
+
'.blitz.config.compiled.js',
|
|
1207
|
+
],
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
name: 'contributing',
|
|
1211
|
+
fileNames: [
|
|
1212
|
+
'contributing.md',
|
|
1213
|
+
'contributing.rst',
|
|
1214
|
+
'contributing.txt',
|
|
1215
|
+
'contributing',
|
|
1216
|
+
],
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
name: 'readme',
|
|
1220
|
+
fileNames: ['readme.md', 'readme.rst', 'readme.txt', 'readme'],
|
|
1221
|
+
},
|
|
1222
|
+
{
|
|
1223
|
+
name: 'changelog',
|
|
1224
|
+
fileNames: [
|
|
1225
|
+
'changelog',
|
|
1226
|
+
'changelog.md',
|
|
1227
|
+
'changelog.rst',
|
|
1228
|
+
'changelog.txt',
|
|
1229
|
+
'changes',
|
|
1230
|
+
'changes.md',
|
|
1231
|
+
'changes.rst',
|
|
1232
|
+
'changes.txt',
|
|
1233
|
+
],
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
name: 'architecture',
|
|
1237
|
+
fileNames: [
|
|
1238
|
+
'architecture.md',
|
|
1239
|
+
'architecture.rst',
|
|
1240
|
+
'architecture.txt',
|
|
1241
|
+
'architecture',
|
|
1242
|
+
],
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
name: 'credits',
|
|
1246
|
+
fileNames: ['credits.md', 'credits.rst', 'credits.txt', 'credits'],
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
name: 'authors',
|
|
1250
|
+
fileNames: [
|
|
1251
|
+
'authors.md',
|
|
1252
|
+
'authors.rst',
|
|
1253
|
+
'authors.txt',
|
|
1254
|
+
'authors',
|
|
1255
|
+
'contributors.md',
|
|
1256
|
+
'contributors.rst',
|
|
1257
|
+
'contributors.txt',
|
|
1258
|
+
'contributors',
|
|
1259
|
+
],
|
|
1260
|
+
},
|
|
1261
|
+
{ name: 'flow', fileNames: ['.flowconfig'] },
|
|
1262
|
+
{ name: 'favicon', fileNames: ['favicon.ico'] },
|
|
1263
|
+
{
|
|
1264
|
+
name: 'karma',
|
|
1265
|
+
fileNames: [
|
|
1266
|
+
'karma.conf.js',
|
|
1267
|
+
'karma.conf.ts',
|
|
1268
|
+
'karma.conf.coffee',
|
|
1269
|
+
'karma.config.js',
|
|
1270
|
+
'karma.config.ts',
|
|
1271
|
+
'karma-main.js',
|
|
1272
|
+
'karma-main.ts',
|
|
1273
|
+
],
|
|
1274
|
+
},
|
|
1275
|
+
{ name: 'bithound', fileNames: ['.bithoundrc'] },
|
|
1276
|
+
{
|
|
1277
|
+
name: 'svgo',
|
|
1278
|
+
fileNames: ['svgo.config.js', 'svgo.config.cjs', 'svgo.config.mjs'],
|
|
1279
|
+
},
|
|
1280
|
+
{ name: 'appveyor', fileNames: ['.appveyor.yml', 'appveyor.yml'] },
|
|
1281
|
+
{ name: 'travis', fileNames: ['.travis.yml'] },
|
|
1282
|
+
{ name: 'codecov', fileNames: ['.codecov.yml', 'codecov.yml'] },
|
|
1283
|
+
{
|
|
1284
|
+
name: 'sonarcloud',
|
|
1285
|
+
fileNames: [
|
|
1286
|
+
'sonar-project.properties',
|
|
1287
|
+
'.sonarcloud.properties',
|
|
1288
|
+
'sonarcloud.yaml',
|
|
1289
|
+
],
|
|
1290
|
+
},
|
|
1291
|
+
{
|
|
1292
|
+
name: 'protractor',
|
|
1293
|
+
fileNames: [
|
|
1294
|
+
'protractor.conf.js',
|
|
1295
|
+
'protractor.conf.ts',
|
|
1296
|
+
'protractor.conf.coffee',
|
|
1297
|
+
'protractor.config.js',
|
|
1298
|
+
'protractor.config.ts',
|
|
1299
|
+
],
|
|
1300
|
+
},
|
|
1301
|
+
{ name: 'fusebox', fileNames: ['fuse.js'] },
|
|
1302
|
+
{ name: 'heroku', fileNames: ['procfile', 'procfile.windows'] },
|
|
1303
|
+
{ name: 'editorconfig', fileNames: ['.editorconfig'] },
|
|
1304
|
+
{ name: 'gitlab', fileExtensions: ['gitlab-ci.yml'] },
|
|
1305
|
+
{ name: 'bower', fileNames: ['.bowerrc', 'bower.json'] },
|
|
1306
|
+
{
|
|
1307
|
+
name: 'eslint',
|
|
1308
|
+
fileNames: [
|
|
1309
|
+
'.eslintrc.js',
|
|
1310
|
+
'.eslintrc.cjs',
|
|
1311
|
+
'.eslintrc.yaml',
|
|
1312
|
+
'.eslintrc.yml',
|
|
1313
|
+
'.eslintrc.json',
|
|
1314
|
+
'.eslintrc-md.js',
|
|
1315
|
+
'.eslintrc-jsdoc.js',
|
|
1316
|
+
'.eslintrc',
|
|
1317
|
+
'.eslintignore',
|
|
1318
|
+
'.eslintcache',
|
|
1319
|
+
'eslint.config.js',
|
|
1320
|
+
],
|
|
1321
|
+
},
|
|
1322
|
+
{
|
|
1323
|
+
name: 'conduct',
|
|
1324
|
+
fileNames: [
|
|
1325
|
+
'code_of_conduct.md',
|
|
1326
|
+
'code_of_conduct.txt',
|
|
1327
|
+
'code_of_conduct',
|
|
1328
|
+
],
|
|
1329
|
+
},
|
|
1330
|
+
{ name: 'watchman', fileNames: ['.watchmanconfig'] },
|
|
1331
|
+
{ name: 'aurelia', fileNames: ['aurelia.json'] },
|
|
1332
|
+
{
|
|
1333
|
+
name: 'auto',
|
|
1334
|
+
fileNames: [
|
|
1335
|
+
'.autorc',
|
|
1336
|
+
'auto.config.js',
|
|
1337
|
+
'auto.config.ts',
|
|
1338
|
+
'auto-config.json',
|
|
1339
|
+
'auto-config.yaml',
|
|
1340
|
+
'auto-config.yml',
|
|
1341
|
+
'auto-config.ts',
|
|
1342
|
+
'auto-config.js',
|
|
1343
|
+
],
|
|
1344
|
+
light: true,
|
|
1345
|
+
},
|
|
1346
|
+
{
|
|
1347
|
+
name: 'mocha',
|
|
1348
|
+
fileNames: [
|
|
1349
|
+
'mocha.opts',
|
|
1350
|
+
'.mocharc.yml',
|
|
1351
|
+
'.mocharc.yaml',
|
|
1352
|
+
'.mocharc.js',
|
|
1353
|
+
'.mocharc.json',
|
|
1354
|
+
'.mocharc.jsonc',
|
|
1355
|
+
],
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
name: 'jenkins',
|
|
1359
|
+
fileNames: ['jenkinsfile'],
|
|
1360
|
+
fileExtensions: ['jenkinsfile', 'jenkins'],
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
name: 'firebase',
|
|
1364
|
+
fileNames: [
|
|
1365
|
+
'firebase.json',
|
|
1366
|
+
'.firebaserc',
|
|
1367
|
+
'firestore.rules',
|
|
1368
|
+
'firestore.indexes.json',
|
|
1369
|
+
],
|
|
1370
|
+
},
|
|
1371
|
+
{
|
|
1372
|
+
name: 'figma',
|
|
1373
|
+
fileExtensions: ['fig'],
|
|
1374
|
+
},
|
|
1375
|
+
{
|
|
1376
|
+
name: 'rollup',
|
|
1377
|
+
fileNames: [
|
|
1378
|
+
'rollup.config.js',
|
|
1379
|
+
'rollup.config.mjs',
|
|
1380
|
+
'rollup.config.ts',
|
|
1381
|
+
'rollup-config.js',
|
|
1382
|
+
'rollup-config.mjs',
|
|
1383
|
+
'rollup-config.ts',
|
|
1384
|
+
'rollup.config.common.js',
|
|
1385
|
+
'rollup.config.common.mjs',
|
|
1386
|
+
'rollup.config.common.ts',
|
|
1387
|
+
'rollup.config.base.js',
|
|
1388
|
+
'rollup.config.base.mjs',
|
|
1389
|
+
'rollup.config.base.ts',
|
|
1390
|
+
'rollup.config.prod.js',
|
|
1391
|
+
'rollup.config.prod.mjs',
|
|
1392
|
+
'rollup.config.prod.ts',
|
|
1393
|
+
'rollup.config.dev.js',
|
|
1394
|
+
'rollup.config.dev.mjs',
|
|
1395
|
+
'rollup.config.dev.ts',
|
|
1396
|
+
'rollup.config.prod.vendor.js',
|
|
1397
|
+
'rollup.config.prod.vendor.mjs',
|
|
1398
|
+
'rollup.config.prod.vendor.ts',
|
|
1399
|
+
],
|
|
1400
|
+
},
|
|
1401
|
+
{ name: 'hack', fileNames: ['.hhconfig'] },
|
|
1402
|
+
{ name: 'hardhat', fileNames: ['hardhat.config.js', 'hardhat.config.ts'] },
|
|
1403
|
+
{
|
|
1404
|
+
name: 'stylelint',
|
|
1405
|
+
fileNames: [
|
|
1406
|
+
'.stylelintrc',
|
|
1407
|
+
'stylelint.config.js',
|
|
1408
|
+
'stylelint.config.cjs',
|
|
1409
|
+
'.stylelintrc.json',
|
|
1410
|
+
'.stylelintrc.yaml',
|
|
1411
|
+
'.stylelintrc.yml',
|
|
1412
|
+
'.stylelintrc.js',
|
|
1413
|
+
'.stylelintrc.cjs',
|
|
1414
|
+
'.stylelintignore',
|
|
1415
|
+
'.stylelintcache',
|
|
1416
|
+
],
|
|
1417
|
+
light: true,
|
|
1418
|
+
},
|
|
1419
|
+
{ name: 'code-climate', fileNames: ['.codeclimate.yml'], light: true },
|
|
1420
|
+
{
|
|
1421
|
+
name: 'prettier',
|
|
1422
|
+
fileNames: [
|
|
1423
|
+
'.prettierrc',
|
|
1424
|
+
'prettier.config.js',
|
|
1425
|
+
'prettier.config.cjs',
|
|
1426
|
+
'.prettierrc.js',
|
|
1427
|
+
'.prettierrc.cjs',
|
|
1428
|
+
'.prettierrc.json',
|
|
1429
|
+
'.prettierrc.json5',
|
|
1430
|
+
'.prettierrc.yaml',
|
|
1431
|
+
'.prettierrc.yml',
|
|
1432
|
+
'.prettierignore',
|
|
1433
|
+
'.prettierrc.toml',
|
|
1434
|
+
],
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
name: 'renovate',
|
|
1438
|
+
fileNames: [
|
|
1439
|
+
'.renovaterc',
|
|
1440
|
+
'.renovaterc.json',
|
|
1441
|
+
'renovate-config.json',
|
|
1442
|
+
'renovate.json',
|
|
1443
|
+
'renovate.json5',
|
|
1444
|
+
],
|
|
1445
|
+
},
|
|
1446
|
+
{ name: 'apollo', fileNames: ['apollo.config.js'] },
|
|
1447
|
+
{ name: 'nodemon', fileNames: ['nodemon.json', 'nodemon-debug.json'] },
|
|
1448
|
+
{
|
|
1449
|
+
name: 'ngrx-reducer',
|
|
1450
|
+
fileExtensions: ['reducer.ts', 'rootReducer.ts'],
|
|
1451
|
+
enabledFor: [IconPack.Ngrx],
|
|
1452
|
+
},
|
|
1453
|
+
{
|
|
1454
|
+
name: 'ngrx-state',
|
|
1455
|
+
fileExtensions: ['state.ts'],
|
|
1456
|
+
enabledFor: [IconPack.Ngrx],
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
name: 'ngrx-actions',
|
|
1460
|
+
fileExtensions: ['actions.ts'],
|
|
1461
|
+
enabledFor: [IconPack.Ngrx],
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
name: 'ngrx-effects',
|
|
1465
|
+
fileExtensions: ['effects.ts'],
|
|
1466
|
+
enabledFor: [IconPack.Ngrx],
|
|
1467
|
+
},
|
|
1468
|
+
{
|
|
1469
|
+
name: 'ngrx-entity',
|
|
1470
|
+
fileNames: ['.entity'],
|
|
1471
|
+
enabledFor: [IconPack.Ngrx],
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
name: 'ngrx-selectors',
|
|
1475
|
+
fileExtensions: ['selectors.ts'],
|
|
1476
|
+
enabledFor: [IconPack.Ngrx],
|
|
1477
|
+
},
|
|
1478
|
+
{ name: 'webhint', fileNames: ['.hintrc'] },
|
|
1479
|
+
{
|
|
1480
|
+
name: 'browserlist',
|
|
1481
|
+
fileNames: ['browserslist', '.browserslistrc'],
|
|
1482
|
+
light: true,
|
|
1483
|
+
},
|
|
1484
|
+
{ name: 'crystal', fileExtensions: ['cr', 'ecr'], light: true },
|
|
1485
|
+
{ name: 'snyk', fileNames: ['.snyk'] },
|
|
1486
|
+
{
|
|
1487
|
+
name: 'drone',
|
|
1488
|
+
fileExtensions: ['drone.yml'],
|
|
1489
|
+
fileNames: ['.drone.yml'],
|
|
1490
|
+
light: true,
|
|
1491
|
+
},
|
|
1492
|
+
{ name: 'cuda', fileExtensions: ['cu', 'cuh'] },
|
|
1493
|
+
{ name: 'log', fileExtensions: ['log'] },
|
|
1494
|
+
{ name: 'dotjs', fileExtensions: ['def', 'dot', 'jst'] },
|
|
1495
|
+
{ name: 'ejs', fileExtensions: ['ejs'] },
|
|
1496
|
+
{ name: 'sequelize', fileNames: ['.sequelizerc'] },
|
|
1497
|
+
{
|
|
1498
|
+
name: 'gatsby',
|
|
1499
|
+
fileNames: [
|
|
1500
|
+
'gatsby-config.js',
|
|
1501
|
+
'gatsby-config.mjs',
|
|
1502
|
+
'gatsby-config.ts',
|
|
1503
|
+
'gatsby-node.js',
|
|
1504
|
+
'gatsby-node.mjs',
|
|
1505
|
+
'gatsby-node.ts',
|
|
1506
|
+
'gatsby-browser.js',
|
|
1507
|
+
'gatsby-browser.tsx',
|
|
1508
|
+
'gatsby-ssr.js',
|
|
1509
|
+
'gatsby-ssr.tsx',
|
|
1510
|
+
],
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
name: 'wakatime',
|
|
1514
|
+
fileNames: ['.wakatime-project'],
|
|
1515
|
+
fileExtensions: ['.wakatime-project'],
|
|
1516
|
+
light: true,
|
|
1517
|
+
},
|
|
1518
|
+
{ name: 'circleci', fileNames: ['circle.yml'], light: true },
|
|
1519
|
+
{ name: 'cloudfoundry', fileNames: ['.cfignore'] },
|
|
1520
|
+
{
|
|
1521
|
+
name: 'grunt',
|
|
1522
|
+
fileNames: [
|
|
1523
|
+
'gruntfile.js',
|
|
1524
|
+
'gruntfile.ts',
|
|
1525
|
+
'gruntfile.coffee',
|
|
1526
|
+
'gruntfile.babel.js',
|
|
1527
|
+
'gruntfile.babel.ts',
|
|
1528
|
+
'gruntfile.babel.coffee',
|
|
1529
|
+
],
|
|
1530
|
+
},
|
|
1531
|
+
{
|
|
1532
|
+
name: 'jest',
|
|
1533
|
+
fileNames: [
|
|
1534
|
+
'jest.config.js',
|
|
1535
|
+
'jest.config.cjs',
|
|
1536
|
+
'jest.config.mjs',
|
|
1537
|
+
'jest.config.ts',
|
|
1538
|
+
'jest.config.cts',
|
|
1539
|
+
'jest.config.mts',
|
|
1540
|
+
'jest.config.json',
|
|
1541
|
+
'jest.e2e.config.js',
|
|
1542
|
+
'jest.e2e.config.cjs',
|
|
1543
|
+
'jest.e2e.config.mjs',
|
|
1544
|
+
'jest.e2e.config.ts',
|
|
1545
|
+
'jest.e2e.config.cts',
|
|
1546
|
+
'jest.e2e.config.mts',
|
|
1547
|
+
'jest.e2e.config.json',
|
|
1548
|
+
'jest.e2e.json',
|
|
1549
|
+
'jest-unit.config.js',
|
|
1550
|
+
'jest-e2e.config.js',
|
|
1551
|
+
'jest-e2e.config.cjs',
|
|
1552
|
+
'jest-e2e.config.mjs',
|
|
1553
|
+
'jest-e2e.config.ts',
|
|
1554
|
+
'jest-e2e.config.cts',
|
|
1555
|
+
'jest-e2e.config.mts',
|
|
1556
|
+
'jest-e2e.config.json',
|
|
1557
|
+
'jest-e2e.json',
|
|
1558
|
+
'jest-github-actions-reporter.js',
|
|
1559
|
+
'jest.setup.js',
|
|
1560
|
+
'jest.setup.ts',
|
|
1561
|
+
'jest.json',
|
|
1562
|
+
'.jestrc',
|
|
1563
|
+
'.jestrc.js',
|
|
1564
|
+
'.jestrc.json',
|
|
1565
|
+
'jest.teardown.js',
|
|
1566
|
+
],
|
|
1567
|
+
},
|
|
1568
|
+
{ name: 'processing', fileExtensions: ['pde'] },
|
|
1569
|
+
{
|
|
1570
|
+
name: 'storybook',
|
|
1571
|
+
fileExtensions: [
|
|
1572
|
+
'stories.js',
|
|
1573
|
+
'stories.jsx',
|
|
1574
|
+
'stories.mdx',
|
|
1575
|
+
'story.js',
|
|
1576
|
+
'story.jsx',
|
|
1577
|
+
'stories.ts',
|
|
1578
|
+
'stories.tsx',
|
|
1579
|
+
'story.ts',
|
|
1580
|
+
'story.tsx',
|
|
1581
|
+
'stories.svelte',
|
|
1582
|
+
'story.mdx',
|
|
1583
|
+
],
|
|
1584
|
+
},
|
|
1585
|
+
{ name: 'wepy', fileExtensions: ['wpy'] },
|
|
1586
|
+
{ name: 'fastlane', fileNames: ['fastfile', 'appfile'] },
|
|
1587
|
+
{ name: 'hcl', fileExtensions: ['hcl'], light: true },
|
|
1588
|
+
{ name: 'helm', fileNames: ['.helmignore'] },
|
|
1589
|
+
{ name: 'san', fileExtensions: ['san'] },
|
|
1590
|
+
{ name: 'wallaby', fileNames: ['wallaby.js', 'wallaby.conf.js'] },
|
|
1591
|
+
{ name: 'django', fileExtensions: ['djt'] },
|
|
1592
|
+
{ name: 'stencil', fileNames: ['stencil.config.js', 'stencil.config.ts'] },
|
|
1593
|
+
{ name: 'red', fileExtensions: ['red'] },
|
|
1594
|
+
{
|
|
1595
|
+
name: 'makefile',
|
|
1596
|
+
fileExtensions: ['mk'],
|
|
1597
|
+
fileNames: ['makefile', 'gnumakefile', 'kbuild'],
|
|
1598
|
+
},
|
|
1599
|
+
{ name: 'foxpro', fileExtensions: ['fxp', 'prg'] },
|
|
1600
|
+
{ name: 'i18n', fileExtensions: ['pot', 'po', 'mo', 'lang'] },
|
|
1601
|
+
{ name: 'webassembly', fileExtensions: ['wat', 'wasm'] },
|
|
1602
|
+
{
|
|
1603
|
+
name: 'semantic-release',
|
|
1604
|
+
light: true,
|
|
1605
|
+
fileNames: [
|
|
1606
|
+
'.releaserc',
|
|
1607
|
+
'.releaserc.yaml',
|
|
1608
|
+
'.releaserc.yml',
|
|
1609
|
+
'.releaserc.json',
|
|
1610
|
+
'.releaserc.js',
|
|
1611
|
+
'release.config.js',
|
|
1612
|
+
],
|
|
1613
|
+
},
|
|
1614
|
+
{
|
|
1615
|
+
name: 'bitbucket',
|
|
1616
|
+
fileNames: ['bitbucket-pipelines.yaml', 'bitbucket-pipelines.yml'],
|
|
1617
|
+
},
|
|
1618
|
+
{ name: 'jupyter', fileExtensions: ['ipynb'] },
|
|
1619
|
+
{ name: 'd', fileExtensions: ['d'] },
|
|
1620
|
+
{ name: 'mdx', fileExtensions: ['mdx'] },
|
|
1621
|
+
{ name: 'mdsvex', fileExtensions: ['svx'] },
|
|
1622
|
+
{ name: 'ballerina', fileExtensions: ['bal', 'balx'] },
|
|
1623
|
+
{ name: 'racket', fileExtensions: ['rkt'] },
|
|
1624
|
+
{
|
|
1625
|
+
name: 'bazel',
|
|
1626
|
+
fileExtensions: ['bzl', 'bazel'],
|
|
1627
|
+
fileNames: ['.bazelignore', '.bazelrc', '.bazelversion'],
|
|
1628
|
+
},
|
|
1629
|
+
{ name: 'mint', fileExtensions: ['mint'] },
|
|
1630
|
+
{ name: 'velocity', fileExtensions: ['vm', 'fhtml', 'vtl'] },
|
|
1631
|
+
{ name: 'godot', fileExtensions: ['gd'] },
|
|
1632
|
+
{
|
|
1633
|
+
name: 'godot-assets',
|
|
1634
|
+
fileExtensions: [
|
|
1635
|
+
'godot',
|
|
1636
|
+
'tres',
|
|
1637
|
+
'tscn',
|
|
1638
|
+
'gdns',
|
|
1639
|
+
'gdnlib',
|
|
1640
|
+
'gdshader',
|
|
1641
|
+
'gdextension',
|
|
1642
|
+
],
|
|
1643
|
+
},
|
|
1644
|
+
{
|
|
1645
|
+
name: 'azure-pipelines',
|
|
1646
|
+
fileNames: ['azure-pipelines.yml', 'azure-pipelines.yaml'],
|
|
1647
|
+
fileExtensions: ['azure-pipelines.yml', 'azure-pipelines.yaml'],
|
|
1648
|
+
},
|
|
1649
|
+
{ name: 'azure', fileExtensions: ['azcli'] },
|
|
1650
|
+
{
|
|
1651
|
+
name: 'vagrant',
|
|
1652
|
+
fileNames: ['vagrantfile'],
|
|
1653
|
+
fileExtensions: ['vagrantfile'],
|
|
1654
|
+
},
|
|
1655
|
+
{ name: 'prisma', fileNames: ['prisma.yml'], fileExtensions: ['prisma'] },
|
|
1656
|
+
{ name: 'razor', fileExtensions: ['cshtml', 'vbhtml'] },
|
|
1657
|
+
{ name: 'abc', fileExtensions: ['abc'] },
|
|
1658
|
+
{ name: 'asciidoc', fileExtensions: ['ad', 'adoc', 'asciidoc'] },
|
|
1659
|
+
{ name: 'istanbul', fileNames: ['.nycrc', '.nycrc.json'] },
|
|
1660
|
+
{ name: 'edge', fileExtensions: ['edge'] },
|
|
1661
|
+
{ name: 'scheme', fileExtensions: ['ss', 'scm'] },
|
|
1662
|
+
{ name: 'lisp', fileExtensions: ['lisp', 'lsp', 'cl', 'fast'] },
|
|
1663
|
+
{
|
|
1664
|
+
name: 'tailwindcss',
|
|
1665
|
+
fileNames: [
|
|
1666
|
+
'tailwind.js',
|
|
1667
|
+
'tailwind.ts',
|
|
1668
|
+
'tailwind.config.js',
|
|
1669
|
+
'tailwind.config.cjs',
|
|
1670
|
+
'tailwind.config.ts',
|
|
1671
|
+
'tailwind.config.cts',
|
|
1672
|
+
],
|
|
1673
|
+
},
|
|
1674
|
+
{
|
|
1675
|
+
name: '3d',
|
|
1676
|
+
fileExtensions: [
|
|
1677
|
+
'stl',
|
|
1678
|
+
'stp',
|
|
1679
|
+
'obj',
|
|
1680
|
+
'ac',
|
|
1681
|
+
'blend',
|
|
1682
|
+
'fbx',
|
|
1683
|
+
'mesh',
|
|
1684
|
+
'mqo',
|
|
1685
|
+
'pmd',
|
|
1686
|
+
'pmx',
|
|
1687
|
+
'skp',
|
|
1688
|
+
'vac',
|
|
1689
|
+
'vdp',
|
|
1690
|
+
'vox',
|
|
1691
|
+
],
|
|
1692
|
+
},
|
|
1693
|
+
{ name: 'buildkite', fileNames: ['buildkite.yml', 'buildkite.yaml'] },
|
|
1694
|
+
{
|
|
1695
|
+
name: 'netlify',
|
|
1696
|
+
fileNames: [
|
|
1697
|
+
'netlify.json',
|
|
1698
|
+
'netlify.yml',
|
|
1699
|
+
'netlify.yaml',
|
|
1700
|
+
'netlify.toml',
|
|
1701
|
+
],
|
|
1702
|
+
},
|
|
1703
|
+
{ name: 'svg', fileExtensions: ['svg'] },
|
|
1704
|
+
{
|
|
1705
|
+
name: 'svelte',
|
|
1706
|
+
fileExtensions: ['svelte'],
|
|
1707
|
+
fileNames: ['svelte.config.js', 'svelte.config.cjs'],
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
name: 'vim',
|
|
1711
|
+
fileExtensions: ['vimrc', 'gvimrc', 'exrc', 'vim', 'viminfo'],
|
|
1712
|
+
},
|
|
1713
|
+
{
|
|
1714
|
+
name: 'nest',
|
|
1715
|
+
fileNames: [
|
|
1716
|
+
'nest-cli.json',
|
|
1717
|
+
'.nest-cli.json',
|
|
1718
|
+
'nestconfig.json',
|
|
1719
|
+
'.nestconfig.json',
|
|
1720
|
+
],
|
|
1721
|
+
},
|
|
1722
|
+
{
|
|
1723
|
+
name: 'nest-controller',
|
|
1724
|
+
fileExtensions: ['controller.ts', 'controller.js'],
|
|
1725
|
+
enabledFor: [IconPack.Nest],
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
name: 'nest-middleware',
|
|
1729
|
+
fileExtensions: ['middleware.ts', 'middleware.js'],
|
|
1730
|
+
enabledFor: [IconPack.Nest],
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
name: 'nest-module',
|
|
1734
|
+
fileExtensions: ['module.ts', 'module.js'],
|
|
1735
|
+
enabledFor: [IconPack.Nest],
|
|
1736
|
+
},
|
|
1737
|
+
{
|
|
1738
|
+
name: 'nest-service',
|
|
1739
|
+
fileExtensions: ['service.ts', 'service.js'],
|
|
1740
|
+
enabledFor: [IconPack.Nest],
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
name: 'nest-decorator',
|
|
1744
|
+
fileExtensions: ['decorator.ts', 'decorator.js'],
|
|
1745
|
+
enabledFor: [IconPack.Nest],
|
|
1746
|
+
},
|
|
1747
|
+
{
|
|
1748
|
+
name: 'nest-pipe',
|
|
1749
|
+
fileExtensions: ['pipe.ts', 'pipe.js'],
|
|
1750
|
+
enabledFor: [IconPack.Nest],
|
|
1751
|
+
},
|
|
1752
|
+
{
|
|
1753
|
+
name: 'nest-filter',
|
|
1754
|
+
fileExtensions: ['filter.ts', 'filter.js'],
|
|
1755
|
+
enabledFor: [IconPack.Nest],
|
|
1756
|
+
},
|
|
1757
|
+
{
|
|
1758
|
+
name: 'nest-gateway',
|
|
1759
|
+
fileExtensions: ['gateway.ts', 'gateway.js'],
|
|
1760
|
+
enabledFor: [IconPack.Nest],
|
|
1761
|
+
},
|
|
1762
|
+
{
|
|
1763
|
+
name: 'nest-guard',
|
|
1764
|
+
fileExtensions: ['guard.ts', 'guard.js'],
|
|
1765
|
+
enabledFor: [IconPack.Nest],
|
|
1766
|
+
},
|
|
1767
|
+
{
|
|
1768
|
+
name: 'nest-resolver',
|
|
1769
|
+
fileExtensions: ['resolver.ts', 'resolver.js'],
|
|
1770
|
+
enabledFor: [IconPack.Nest],
|
|
1771
|
+
},
|
|
1772
|
+
{ name: 'moonscript', fileExtensions: ['moon'] },
|
|
1773
|
+
{ name: 'percy', fileNames: ['.percy.yml'] },
|
|
1774
|
+
{ name: 'gitpod', fileNames: ['.gitpod.yml'] },
|
|
1775
|
+
{ name: 'advpl_prw', fileExtensions: ['prw', 'prx'] },
|
|
1776
|
+
{ name: 'advpl_ptm', fileExtensions: ['ptm'] },
|
|
1777
|
+
{ name: 'advpl_tlpp', fileExtensions: ['tlpp'] },
|
|
1778
|
+
{ name: 'advpl_include', fileExtensions: ['ch'] },
|
|
1779
|
+
{ name: 'codeowners', fileNames: ['codeowners'] },
|
|
1780
|
+
{ name: 'gcp', fileNames: ['.gcloudignore'] },
|
|
1781
|
+
{ name: 'disc', fileExtensions: ['iso'] },
|
|
1782
|
+
{
|
|
1783
|
+
name: 'fortran',
|
|
1784
|
+
fileExtensions: ['f', 'f77', 'f90', 'f95', 'f03', 'f08'],
|
|
1785
|
+
},
|
|
1786
|
+
{ name: 'tcl', fileExtensions: ['tcl'] },
|
|
1787
|
+
{ name: 'liquid', fileExtensions: ['liquid'] },
|
|
1788
|
+
{ name: 'prolog', fileExtensions: ['p', 'pro', 'pl'] },
|
|
1789
|
+
{
|
|
1790
|
+
name: 'husky',
|
|
1791
|
+
fileNames: [
|
|
1792
|
+
'.huskyrc',
|
|
1793
|
+
'husky.config.js',
|
|
1794
|
+
'.huskyrc.json',
|
|
1795
|
+
'.huskyrc.js',
|
|
1796
|
+
'.huskyrc.yaml',
|
|
1797
|
+
'.huskyrc.yml',
|
|
1798
|
+
],
|
|
1799
|
+
},
|
|
1800
|
+
{ name: 'coconut', fileExtensions: ['coco'] },
|
|
1801
|
+
{ name: 'tilt', fileNames: ['tiltfile'] },
|
|
1802
|
+
{
|
|
1803
|
+
name: 'capacitor',
|
|
1804
|
+
fileNames: ['capacitor.config.json', 'capacitor.config.ts'],
|
|
1805
|
+
},
|
|
1806
|
+
{ name: 'sketch', fileExtensions: ['sketch'] },
|
|
1807
|
+
{ name: 'pawn', fileExtensions: ['pwn', 'amx'] },
|
|
1808
|
+
{ name: 'adonis', fileNames: ['.adonisrc.json', 'ace'] },
|
|
1809
|
+
{ name: 'forth', fileExtensions: ['4th', 'fth', 'frt'] },
|
|
1810
|
+
{
|
|
1811
|
+
name: 'uml',
|
|
1812
|
+
fileExtensions: ['iuml', 'pu', 'puml', 'plantuml', 'wsd'],
|
|
1813
|
+
light: true,
|
|
1814
|
+
},
|
|
1815
|
+
{
|
|
1816
|
+
name: 'meson',
|
|
1817
|
+
fileNames: ['meson.build', 'meson_options.txt'],
|
|
1818
|
+
fileExtensions: ['wrap'],
|
|
1819
|
+
},
|
|
1820
|
+
{
|
|
1821
|
+
name: 'commitlint',
|
|
1822
|
+
fileNames: [
|
|
1823
|
+
'.commitlintrc',
|
|
1824
|
+
'.commitlintrc.js',
|
|
1825
|
+
'.commitlintrc.cjs',
|
|
1826
|
+
'.commitlintrc.ts',
|
|
1827
|
+
'.commitlintrc.cts',
|
|
1828
|
+
'.commitlintrc.json',
|
|
1829
|
+
'.commitlintrc.yaml',
|
|
1830
|
+
'.commitlintrc.yml',
|
|
1831
|
+
'.commitlint.yaml',
|
|
1832
|
+
'.commitlint.yml',
|
|
1833
|
+
'commitlint.config.js',
|
|
1834
|
+
'commitlint.config.cjs',
|
|
1835
|
+
'commitlint.config.ts',
|
|
1836
|
+
'commitlint.config.cts',
|
|
1837
|
+
],
|
|
1838
|
+
},
|
|
1839
|
+
{ name: 'buck', fileNames: ['.buckconfig'] },
|
|
1840
|
+
{ name: 'dhall', fileExtensions: ['dhall', 'dhallb'] },
|
|
1841
|
+
{
|
|
1842
|
+
name: 'sml',
|
|
1843
|
+
fileExtensions: [
|
|
1844
|
+
'sml',
|
|
1845
|
+
'mlton',
|
|
1846
|
+
'mlb',
|
|
1847
|
+
'sig',
|
|
1848
|
+
'fun',
|
|
1849
|
+
'cm',
|
|
1850
|
+
'lex',
|
|
1851
|
+
'use',
|
|
1852
|
+
'grm',
|
|
1853
|
+
],
|
|
1854
|
+
},
|
|
1855
|
+
{ name: 'nrwl', fileNames: ['nx.json', '.nxignore'] },
|
|
1856
|
+
{ name: 'opam', fileExtensions: ['opam'] },
|
|
1857
|
+
{
|
|
1858
|
+
name: 'dune',
|
|
1859
|
+
fileNames: [
|
|
1860
|
+
'dune',
|
|
1861
|
+
'dune-project',
|
|
1862
|
+
'dune-workspace',
|
|
1863
|
+
'dune-workspace.dev',
|
|
1864
|
+
],
|
|
1865
|
+
},
|
|
1866
|
+
{ name: 'imba', fileExtensions: ['imba'] },
|
|
1867
|
+
{ name: 'drawio', fileExtensions: ['drawio', 'dio'] },
|
|
1868
|
+
{ name: 'pascal', fileExtensions: ['pas'] },
|
|
1869
|
+
{ name: 'shaderlab', fileExtensions: ['unity'] },
|
|
1870
|
+
{
|
|
1871
|
+
name: 'roadmap',
|
|
1872
|
+
fileNames: [
|
|
1873
|
+
'roadmap.md',
|
|
1874
|
+
'roadmap.txt',
|
|
1875
|
+
'timeline.md',
|
|
1876
|
+
'timeline.txt',
|
|
1877
|
+
'milestones.md',
|
|
1878
|
+
'milestones.txt',
|
|
1879
|
+
],
|
|
1880
|
+
},
|
|
1881
|
+
{
|
|
1882
|
+
name: 'sas',
|
|
1883
|
+
fileExtensions: ['sas', 'sas7bdat', 'sashdat', 'astore', 'ast', 'sast'],
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
name: 'nuget',
|
|
1887
|
+
fileNames: ['nuget.config', '.nuspec', 'nuget.exe'],
|
|
1888
|
+
fileExtensions: ['nupkg'],
|
|
1889
|
+
},
|
|
1890
|
+
{ name: 'command', fileExtensions: ['command'] },
|
|
1891
|
+
{ name: 'stryker', fileNames: ['stryker.conf.js', 'stryker.conf.json'] },
|
|
1892
|
+
{ name: 'denizenscript', fileExtensions: ['dsc'] },
|
|
1893
|
+
{
|
|
1894
|
+
name: 'modernizr',
|
|
1895
|
+
fileNames: ['.modernizrrc', '.modernizrrc.js', '.modernizrrc.json'],
|
|
1896
|
+
},
|
|
1897
|
+
{ name: 'slug', fileNames: ['.slugignore'] },
|
|
1898
|
+
{ name: 'search', fileExtensions: ['code-search'] },
|
|
1899
|
+
{
|
|
1900
|
+
name: 'stitches',
|
|
1901
|
+
fileNames: ['stitches.config.js', 'stitches.config.ts'],
|
|
1902
|
+
light: true,
|
|
1903
|
+
},
|
|
1904
|
+
{
|
|
1905
|
+
name: 'nginx',
|
|
1906
|
+
fileNames: ['nginx.conf'],
|
|
1907
|
+
fileExtensions: ['nginx', 'nginxconfig'],
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
name: 'minecraft',
|
|
1911
|
+
fileExtensions: [
|
|
1912
|
+
'mcfunction',
|
|
1913
|
+
'mcmeta',
|
|
1914
|
+
'mcr',
|
|
1915
|
+
'mca',
|
|
1916
|
+
'mcgame',
|
|
1917
|
+
'mclevel',
|
|
1918
|
+
'mcworld',
|
|
1919
|
+
'mine',
|
|
1920
|
+
'mus',
|
|
1921
|
+
'mcstructure',
|
|
1922
|
+
'mcpack',
|
|
1923
|
+
'mcaddon',
|
|
1924
|
+
],
|
|
1925
|
+
fileNames: ['.mcattributes', '.mcdefinitions', '.mcignore'],
|
|
1926
|
+
},
|
|
1927
|
+
{ name: 'replit', fileNames: ['.replit'] },
|
|
1928
|
+
{ name: 'rescript', fileExtensions: ['res'] },
|
|
1929
|
+
{ name: 'rescript-interface', fileExtensions: ['resi'] },
|
|
1930
|
+
{
|
|
1931
|
+
name: 'snowpack',
|
|
1932
|
+
fileNames: [
|
|
1933
|
+
'snowpack.config.js',
|
|
1934
|
+
'snowpack.config.cjs',
|
|
1935
|
+
'snowpack.config.mjs',
|
|
1936
|
+
'snowpack.config.ts',
|
|
1937
|
+
'snowpack.config.cts',
|
|
1938
|
+
'snowpack.config.mts',
|
|
1939
|
+
'snowpack.deps.json',
|
|
1940
|
+
'snowpack.config.json',
|
|
1941
|
+
],
|
|
1942
|
+
light: true,
|
|
1943
|
+
},
|
|
1944
|
+
{ name: 'brainfuck', fileExtensions: ['b', 'bf'] },
|
|
1945
|
+
{ name: 'bicep', fileExtensions: ['bicep'] },
|
|
1946
|
+
{ name: 'cobol', fileExtensions: ['cob', 'cbl'] },
|
|
1947
|
+
{ name: 'grain', fileExtensions: ['gr'] },
|
|
1948
|
+
{ name: 'lolcode', fileExtensions: ['lol'] },
|
|
1949
|
+
{ name: 'idris', fileExtensions: ['idr', 'ibc'] },
|
|
1950
|
+
{ name: 'quasar', fileNames: ['quasar.conf.js', 'quasar.config.js'] },
|
|
1951
|
+
{ name: 'dependabot', fileNames: ['dependabot.yml', 'dependabot.yaml'] },
|
|
1952
|
+
{ name: 'pipeline', fileExtensions: ['pipeline'] },
|
|
1953
|
+
{
|
|
1954
|
+
name: 'vite',
|
|
1955
|
+
fileNames: [
|
|
1956
|
+
'vite.config.js',
|
|
1957
|
+
'vite.config.mjs',
|
|
1958
|
+
'vite.config.cjs',
|
|
1959
|
+
'vite.config.ts',
|
|
1960
|
+
'vite.config.cts',
|
|
1961
|
+
'vite.config.mts',
|
|
1962
|
+
],
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
name: 'vitest',
|
|
1966
|
+
fileNames: [
|
|
1967
|
+
'vitest.config.ts',
|
|
1968
|
+
'vitest.config.mts',
|
|
1969
|
+
'vitest.config.cts',
|
|
1970
|
+
'vitest.config.js',
|
|
1971
|
+
'vitest.config.mjs',
|
|
1972
|
+
'vitest.config.cjs',
|
|
1973
|
+
],
|
|
1974
|
+
},
|
|
1975
|
+
{ name: 'opa', fileExtensions: ['rego'] },
|
|
1976
|
+
{ name: 'lerna', fileNames: ['lerna.json'] },
|
|
1977
|
+
{
|
|
1978
|
+
name: 'windicss',
|
|
1979
|
+
fileNames: [
|
|
1980
|
+
'windi.config.js',
|
|
1981
|
+
'windi.config.cjs',
|
|
1982
|
+
'windi.config.ts',
|
|
1983
|
+
'windi.config.cts',
|
|
1984
|
+
'windi.config.json',
|
|
1985
|
+
],
|
|
1986
|
+
fileExtensions: ['windi'],
|
|
1987
|
+
},
|
|
1988
|
+
{
|
|
1989
|
+
name: 'textlint',
|
|
1990
|
+
fileNames: ['.textlintrc'],
|
|
1991
|
+
},
|
|
1992
|
+
{ name: 'scala', fileExtensions: ['scala', 'sc'] },
|
|
1993
|
+
{ name: 'lilypond', fileExtensions: ['ly'] },
|
|
1994
|
+
{ name: 'vlang', fileExtensions: ['v'], fileNames: ['vpkg.json', 'v.mod'] },
|
|
1995
|
+
{ name: 'chess', fileExtensions: ['pgn', 'fen'], light: true },
|
|
1996
|
+
{ name: 'gemini', fileExtensions: ['gmi', 'gemini'] },
|
|
1997
|
+
{ name: 'sentry', fileNames: ['.sentryclirc'] },
|
|
1998
|
+
{
|
|
1999
|
+
name: 'phpunit',
|
|
2000
|
+
fileNames: [
|
|
2001
|
+
'.phpunit.result.cache',
|
|
2002
|
+
'.phpunit-watcher.yml',
|
|
2003
|
+
'phpunit.xml',
|
|
2004
|
+
'phpunit.xml.dist',
|
|
2005
|
+
'phpunit-watcher.yml',
|
|
2006
|
+
'phpunit-watcher.yml.dist',
|
|
2007
|
+
],
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
name: 'php-cs-fixer',
|
|
2011
|
+
fileNames: [
|
|
2012
|
+
'.php_cs',
|
|
2013
|
+
'.php_cs.dist',
|
|
2014
|
+
'.php_cs.php',
|
|
2015
|
+
'.php_cs.dist.php',
|
|
2016
|
+
'.php-cs-fixer.php',
|
|
2017
|
+
'.php-cs-fixer.dist.php',
|
|
2018
|
+
],
|
|
2019
|
+
},
|
|
2020
|
+
{ name: 'robots', fileNames: ['robots.txt'] },
|
|
2021
|
+
{
|
|
2022
|
+
name: 'tsconfig',
|
|
2023
|
+
fileNames: [
|
|
2024
|
+
'tsconfig.json',
|
|
2025
|
+
'tsconfig.app.json',
|
|
2026
|
+
'tsconfig.editor.json',
|
|
2027
|
+
'tsconfig.spec.json',
|
|
2028
|
+
'tsconfig.base.json',
|
|
2029
|
+
'tsconfig.build.json',
|
|
2030
|
+
'tsconfig.eslint.json',
|
|
2031
|
+
'tsconfig.lib.json',
|
|
2032
|
+
'tsconfig.lib.prod.json',
|
|
2033
|
+
'tsconfig.node.json',
|
|
2034
|
+
'tsconfig.test.json',
|
|
2035
|
+
'tsconfig.e2e.json',
|
|
2036
|
+
'tsconfig.web.json',
|
|
2037
|
+
'tsconfig.webworker.json',
|
|
2038
|
+
'tsconfig.worker.json',
|
|
2039
|
+
'tsconfig.config.json',
|
|
2040
|
+
'tsconfig.vitest.json',
|
|
2041
|
+
'tsconfig.cjs.json',
|
|
2042
|
+
'tsconfig.esm.json',
|
|
2043
|
+
'tsconfig.mjs.json',
|
|
2044
|
+
'tsconfig.doc.json',
|
|
2045
|
+
],
|
|
2046
|
+
fileExtensions: ['tsconfig.json'],
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
name: 'tauri',
|
|
2050
|
+
fileNames: [
|
|
2051
|
+
'tauri.conf.json',
|
|
2052
|
+
'tauri.config.json',
|
|
2053
|
+
'tauri.linux.conf.json',
|
|
2054
|
+
'tauri.windows.conf.json',
|
|
2055
|
+
'tauri.macos.conf.json',
|
|
2056
|
+
],
|
|
2057
|
+
fileExtensions: ['tauri'],
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
name: 'jsconfig',
|
|
2061
|
+
fileNames: ['jsconfig.json'],
|
|
2062
|
+
fileExtensions: ['jsconfig.json'],
|
|
2063
|
+
},
|
|
2064
|
+
{
|
|
2065
|
+
name: 'maven',
|
|
2066
|
+
fileNames: ['maven.config', 'jvm.config', 'pom.xml'],
|
|
2067
|
+
},
|
|
2068
|
+
{ name: 'ada', fileExtensions: ['ada', 'adb', 'ads', 'ali'] },
|
|
2069
|
+
{ name: 'serverless', fileNames: ['serverless.yml'] },
|
|
2070
|
+
{
|
|
2071
|
+
name: 'supabase',
|
|
2072
|
+
fileNames: ['supabase.js', 'supabase.py'],
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
name: 'ember',
|
|
2076
|
+
fileNames: ['.ember-cli', '.ember-cli.js', 'ember-cli-builds.js'],
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
name: 'horusec',
|
|
2080
|
+
fileNames: ['horusec-config.json'],
|
|
2081
|
+
fileExtensions: ['horusec-config.json'],
|
|
2082
|
+
},
|
|
2083
|
+
{ name: 'poetry', fileNames: ['poetry.lock'] },
|
|
2084
|
+
{ name: 'coala', fileExtensions: ['coarc', 'coafile'] },
|
|
2085
|
+
{ name: 'parcel', fileNames: ['.parcelrc'] },
|
|
2086
|
+
{
|
|
2087
|
+
name: 'dinophp',
|
|
2088
|
+
fileExtensions: ['bubble', 'html.bubble', 'php.bubble'],
|
|
2089
|
+
},
|
|
2090
|
+
{ name: 'teal', fileExtensions: ['tl'] },
|
|
2091
|
+
{ name: 'template', fileExtensions: ['template'] },
|
|
2092
|
+
{ name: 'astyle', fileNames: ['.astylerc'] },
|
|
2093
|
+
{
|
|
2094
|
+
name: 'shader',
|
|
2095
|
+
fileExtensions: [
|
|
2096
|
+
'glsl',
|
|
2097
|
+
'vert',
|
|
2098
|
+
'tesc',
|
|
2099
|
+
'tese',
|
|
2100
|
+
'geom',
|
|
2101
|
+
'frag',
|
|
2102
|
+
'comp',
|
|
2103
|
+
'vert.glsl',
|
|
2104
|
+
'tesc.glsl',
|
|
2105
|
+
'tese.glsl',
|
|
2106
|
+
'geom.glsl',
|
|
2107
|
+
'frag.glsl',
|
|
2108
|
+
'comp.glsl',
|
|
2109
|
+
'vertex.glsl',
|
|
2110
|
+
'geometry.glsl',
|
|
2111
|
+
'fragment.glsl',
|
|
2112
|
+
'compute.glsl',
|
|
2113
|
+
'ts.glsl',
|
|
2114
|
+
'gs.glsl',
|
|
2115
|
+
'vs.glsl',
|
|
2116
|
+
'fs.glsl',
|
|
2117
|
+
'shader',
|
|
2118
|
+
'vertexshader',
|
|
2119
|
+
'fragmentshader',
|
|
2120
|
+
'geometryshader',
|
|
2121
|
+
'computeshader',
|
|
2122
|
+
'hlsl',
|
|
2123
|
+
'pixel.hlsl',
|
|
2124
|
+
'geometry.hlsl',
|
|
2125
|
+
'compute.hlsl',
|
|
2126
|
+
'tessellation.hlsl',
|
|
2127
|
+
'px.hlsl',
|
|
2128
|
+
'geom.hlsl',
|
|
2129
|
+
'comp.hlsl',
|
|
2130
|
+
'tess.hlsl',
|
|
2131
|
+
'wgsl',
|
|
2132
|
+
],
|
|
2133
|
+
},
|
|
2134
|
+
{
|
|
2135
|
+
name: 'lighthouse',
|
|
2136
|
+
fileNames: [
|
|
2137
|
+
'.lighthouserc.js',
|
|
2138
|
+
'lighthouserc.js',
|
|
2139
|
+
'.lighthouserc.json',
|
|
2140
|
+
'lighthouserc.json',
|
|
2141
|
+
'.lighthouserc.yml',
|
|
2142
|
+
'lighthouserc.yml',
|
|
2143
|
+
'.lighthouserc.yaml',
|
|
2144
|
+
'lighthouserc.yaml',
|
|
2145
|
+
],
|
|
2146
|
+
},
|
|
2147
|
+
{
|
|
2148
|
+
name: 'svgr',
|
|
2149
|
+
fileNames: [
|
|
2150
|
+
'.svgrrc',
|
|
2151
|
+
'svgr.config.js',
|
|
2152
|
+
'.svgrrc.js',
|
|
2153
|
+
'.svgrrc.yaml',
|
|
2154
|
+
'.svgrrc.yml',
|
|
2155
|
+
'.svgrrc.json',
|
|
2156
|
+
],
|
|
2157
|
+
},
|
|
2158
|
+
{ name: 'rome', fileNames: ['rome.json'] },
|
|
2159
|
+
{
|
|
2160
|
+
name: 'cypress',
|
|
2161
|
+
fileNames: [
|
|
2162
|
+
'cypress.json',
|
|
2163
|
+
'cypress.env.json',
|
|
2164
|
+
'cypress.config.ts',
|
|
2165
|
+
'cypress.config.js',
|
|
2166
|
+
'cypress.config.cjs',
|
|
2167
|
+
'cypress.config.mjs',
|
|
2168
|
+
],
|
|
2169
|
+
},
|
|
2170
|
+
{ name: 'siyuan', fileExtensions: ['sy'] },
|
|
2171
|
+
{ name: 'ndst', fileExtensions: ['ndst.yml', 'ndst.yaml', 'ndst.json'] },
|
|
2172
|
+
{
|
|
2173
|
+
name: 'plop',
|
|
2174
|
+
fileNames: ['plopfile.js', 'plopfile.cjs', 'plopfile.mjs', 'plopfile.ts'],
|
|
2175
|
+
},
|
|
2176
|
+
{ name: 'tobi', fileExtensions: ['tobi'] },
|
|
2177
|
+
{ name: 'tobimake', fileNames: ['.tobimake'] },
|
|
2178
|
+
{ name: 'gleam', fileNames: ['gleam.toml'], fileExtensions: ['gleam'] },
|
|
2179
|
+
{
|
|
2180
|
+
name: 'pnpm',
|
|
2181
|
+
light: true,
|
|
2182
|
+
fileNames: ['pnpm-lock.yaml', 'pnpm-workspace.yaml', '.pnpmfile.cjs'],
|
|
2183
|
+
},
|
|
2184
|
+
{
|
|
2185
|
+
name: 'gridsome',
|
|
2186
|
+
fileNames: ['gridsome.config.js', 'gridsome.server.js'],
|
|
2187
|
+
},
|
|
2188
|
+
{
|
|
2189
|
+
name: 'steadybit',
|
|
2190
|
+
fileExtensions: ['steadybit.yml', 'steadybit.yaml'],
|
|
2191
|
+
fileNames: [
|
|
2192
|
+
'.steadybit.yml',
|
|
2193
|
+
'steadybit.yml',
|
|
2194
|
+
'.steadybit.yaml',
|
|
2195
|
+
'steadybit.yaml',
|
|
2196
|
+
],
|
|
2197
|
+
},
|
|
2198
|
+
{ name: 'tree', fileExtensions: ['tree'] },
|
|
2199
|
+
{
|
|
2200
|
+
name: 'cadence',
|
|
2201
|
+
fileExtensions: ['cdc'],
|
|
2202
|
+
},
|
|
2203
|
+
{ name: 'caddy', fileNames: ['Caddyfile'] },
|
|
2204
|
+
{ name: 'bun', fileNames: ['bun.lockb'], light: true },
|
|
2205
|
+
{ name: 'antlr', fileExtensions: ['g4'] },
|
|
2206
|
+
{ name: 'stylable', fileExtensions: ['st.css'] },
|
|
2207
|
+
{ name: 'pinejs', fileExtensions: ['pine'] },
|
|
2208
|
+
{
|
|
2209
|
+
name: 'nano-staged',
|
|
2210
|
+
light: true,
|
|
2211
|
+
fileNames: [
|
|
2212
|
+
`.nano-staged.js`,
|
|
2213
|
+
`nano-staged.js`,
|
|
2214
|
+
`.nano-staged.cjs`,
|
|
2215
|
+
`nano-staged.cjs`,
|
|
2216
|
+
`.nano-staged.mjs`,
|
|
2217
|
+
`nano-staged.mjs`,
|
|
2218
|
+
`.nano-staged.json`,
|
|
2219
|
+
`nano-staged.json`,
|
|
2220
|
+
`.nanostagedrc`,
|
|
2221
|
+
],
|
|
2222
|
+
},
|
|
2223
|
+
{
|
|
2224
|
+
name: 'craco',
|
|
2225
|
+
fileNames: [
|
|
2226
|
+
'craco.config.ts',
|
|
2227
|
+
'craco.config.js',
|
|
2228
|
+
'craco.config.cjs',
|
|
2229
|
+
'.cracorc.ts',
|
|
2230
|
+
'.cracorc.js',
|
|
2231
|
+
'.cracorc',
|
|
2232
|
+
],
|
|
2233
|
+
},
|
|
2234
|
+
{
|
|
2235
|
+
name: 'gamemaker',
|
|
2236
|
+
fileExtensions: ['gml', 'yy', 'yyp', 'yyz'],
|
|
2237
|
+
},
|
|
2238
|
+
{ name: 'tldraw', fileExtensions: ['tldr'], light: true },
|
|
2239
|
+
],
|
|
2240
|
+
};
|