-
Notifications
You must be signed in to change notification settings - Fork 335
/
package.json
661 lines (661 loc) · 18.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
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
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
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
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
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
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
{
"name": "vscode-eslint",
"displayName": "ESLint",
"description": "Integrates ESLint JavaScript into VS Code.",
"version": "3.0.13",
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-eslint.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-eslint/issues"
},
"publisher": "dbaeumer",
"icon": "eslint_icon.png",
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"multi-root ready"
],
"engines": {
"vscode": "^1.90.0"
},
"activationEvents": [
"onStartupFinished"
],
"extensionKind": [
"workspace"
],
"enabledApiProposals": [
],
"main": "./client/out/extension",
"capabilities": {
"virtualWorkspaces": {
"supported": false,
"description": "Using ESLint is not possible in virtual workspaces."
},
"untrustedWorkspaces": {
"supported": false,
"description": "The extension requires workspace trust because it loads configuration files and code from the workspace and executes it."
}
},
"contributes": {
"configuration": {
"type": "object",
"title": "ESLint",
"properties": {
"eslint.enable": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Controls whether eslint is enabled or not."
},
"eslint.packageManager": {
"scope": "resource",
"type": "string",
"enum": [
"npm",
"yarn",
"pnpm"
],
"default": "npm",
"description": "The package manager you use to install node modules.",
"deprecationMessage": "The setting is deprecated. The Package Manager is automatically detected now."
},
"eslint.problems.shortenToSingleLine": {
"type": "boolean",
"default": false,
"description": "Shortens the text spans of underlined problems to their first related line.",
"scope": "resource"
},
"eslint.nodeEnv": {
"scope": "resource",
"type": [
"string",
"null"
],
"default": null,
"markdownDescription": "The value of `NODE_ENV` to use when running eslint tasks."
},
"eslint.nodePath": {
"scope": "machine-overridable",
"type": [
"string",
"null"
],
"default": null,
"markdownDescription": "A path added to `NODE_PATH` when resolving the eslint module."
},
"eslint.options": {
"scope": "resource",
"type": "object",
"default": {},
"markdownDescription": "The eslint options object to provide args normally passed to eslint when executed from a command line (see https://eslint.org/docs/developer-guide/nodejs-api#eslint-class)."
},
"eslint.trace.server": {
"scope": "window",
"anyOf": [
{
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off"
},
{
"type": "object",
"properties": {
"verbosity": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off"
},
"format": {
"type": "string",
"enum": [
"text",
"json"
],
"default": "text"
}
}
}
],
"default": "off",
"description": "Traces the communication between VSCode and the eslint linter service."
},
"eslint.run": {
"scope": "resource",
"type": "string",
"enum": [
"onSave",
"onType"
],
"default": "onType",
"description": "Run the linter on save (onSave) or on type (onType)"
},
"eslint.autoFixOnSave": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Turns auto fix on save on or off.",
"deprecationMessage": "The setting is deprecated. Use editor.codeActionsOnSave instead with a source.fixAll.eslint member."
},
"eslint.quiet": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Turns on quiet mode, which ignores warnings."
},
"eslint.onIgnoredFiles": {
"scope": "resource",
"type": "string",
"enum": [
"warn",
"off"
],
"default": "off",
"description": "Whether ESLint should issue a warning on ignored files."
},
"eslint.migration.2_x": {
"scope": "application",
"type": "string",
"enum": [
"off",
"on"
],
"default": "on",
"description": "Whether ESlint should migrate auto fix on save settings."
},
"eslint.useESLintClass": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Since version 7 ESLint offers a new API call ESLint. Use it even if the old CLIEngine is available. From version 8 on forward on ESLint class is available."
},
"eslint.useFlatConfig": {
"scope": "resource",
"type": ["boolean", "null"],
"default": null,
"markdownDescription": "Controls whether flat config should be used or not. This setting requires ESLint version 8.57 or later and is interpreted according to the [ESLint Flat Config rollout plan](https://eslint.org/blog/2023/10/flat-config-rollout-plans/). This means:\n\n - *8.57.0 <= ESLint version < 9.x*: setting is honored and defaults to false\n- *9.0.0 <= ESLint version < 10.x*: settings is honored and defaults to true\n- *10.0.0 <= ESLint version*: setting is ignored. Flat configs are the default and can't be turned off."
},
"eslint.experimental.useFlatConfig": {
"scope": "resource",
"type": "boolean",
"default": false,
"deprecationMessage": "Use ESLint version 8.57 or later and `eslint.useFlatConfig` instead.",
"description": "Enables support of experimental Flat Config (aka eslint.config.js). Requires ESLint version >= 8.21 < 8.57.0)."
},
"eslint.workingDirectories": {
"scope": "resource",
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"mode": {
"type": "string",
"enum": [
"auto",
"location"
],
"default": "location"
}
},
"required": [
"mode"
]
},
{
"type": "object",
"properties": {
"directory": {
"type": "string",
"description": "The working directory to use if a file's path starts with this directory."
},
"changeProcessCWD": {
"type": "boolean",
"description": "Whether the process's cwd should be changed as well."
}
},
"deprecationMessage": "Use the new !cwd form.",
"required": [
"directory"
]
},
{
"type": "object",
"properties": {
"directory": {
"type": "string",
"description": "The working directory to use if a file's path starts with this directory."
},
"!cwd": {
"type": "boolean",
"description": "Set to true if ESLint shouldn't change the working directory."
}
},
"required": [
"directory"
]
},
{
"type": "object",
"properties": {
"pattern": {
"type": "string",
"description": "A glob pattern to match a working directory."
},
"!cwd": {
"type": "boolean",
"description": "Set to true if ESLint shouldn't change the working directory."
}
},
"required": [
"pattern"
]
}
]
},
"markdownDescription": "Specifies how the working directories ESLint is using are computed. ESLint resolves configuration files (e.g. `eslintrc`, `.eslintignore`) relative to a working directory so it is important to configure this correctly."
},
"eslint.validate": {
"scope": "resource",
"type": ["array", "null"],
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"properties": {
"language": {
"type": "string",
"description": "The language id to be validated by ESLint."
},
"autoFix": {
"type": "boolean",
"description": "Whether auto fixes are provided for the language."
}
},
"deprecationMessage": "Auto Fix is enabled by default. Use the single string form."
}
]
},
"default": null,
"description": "An array of language ids which should be validated by ESLint. If not installed ESLint will show an error."
},
"eslint.ignoreUntitled": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "If true, untitled files won't be validated by ESLint."
},
"eslint.probe": {
"scope": "resource",
"type": "array",
"items": {
"type": "string"
},
"default": [
"astro",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"mdx",
"vue",
"markdown",
"json",
"jsonc"
],
"description": "An array of language ids for which the extension should probe if support is installed."
},
"eslint.provideLintTask": {
"scope": "resource",
"type": "boolean",
"default": false,
"deprecationMessage": "This option is deprecated. Use eslint.lintTask.enable instead.",
"description": "Controls whether a task for linting the whole workspace will be available."
},
"eslint.lintTask.enable": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Controls whether a task for linting the whole workspace will be available."
},
"eslint.lintTask.options": {
"scope": "resource",
"type": "string",
"default": ".",
"markdownDescription": "Command line options applied when running the task for linting the whole workspace (see https://eslint.org/docs/user-guide/command-line-interface)."
},
"eslint.runtime": {
"scope": "machine-overridable",
"type": [
"string",
"null"
],
"default": null,
"markdownDescription": "The location of the node binary to run ESLint under."
},
"eslint.execArgv": {
"scope": "machine-overridable",
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
}, {
"type": "null"
}
],
"default": null,
"markdownDescription": "Additional exec argv argument passed to the runtime. This can for example be used to control the maximum heap space using --max_old_space_size"
},
"eslint.debug": {
"scope": "window",
"type": "boolean",
"default": false,
"markdownDescription": "Enables ESLint debug mode (same as `--debug` on the command line)"
},
"eslint.codeAction.disableRuleComment": {
"scope": "resource",
"type": "object",
"default": {
"enable": true,
"location": "separateLine",
"commentStyle": "line"
},
"properties": {
"enable": {
"type": "boolean",
"default": true,
"description": "Show the disable code actions."
},
"location": {
"type": "string",
"enum": [
"separateLine",
"sameLine"
],
"default": "separateLine",
"description": "Configure the disable rule code action to insert the comment on the same line or a new line."
},
"commentStyle": {
"type": "string",
"enum": [
"line",
"block"
],
"default": "line",
"definition": "The comment style to use when disabling a rule on a specific line."
}
},
"additionalProperties": false,
"markdownDescription": "Show disable lint rule in the quick fix menu."
},
"eslint.codeAction.showDocumentation": {
"scope": "resource",
"type": "object",
"default": {
"enable": true
},
"properties": {
"enable": {
"type": "boolean",
"default": true,
"description": "Show the documentation code actions."
}
},
"additionalProperties": false,
"markdownDescription": "Show open lint rule documentation web page in the quick fix menu."
},
"eslint.codeActionsOnSave.mode": {
"scope": "resource",
"type": "string",
"enum": [
"all",
"problems"
],
"enumDescriptions": [
"Fixes all possible problems in the file. This option might take some time.",
"Fixes only reported problems that have non-overlapping textual edits. This option runs a lot faster."
],
"default": "all",
"markdownDescription": "Specifies the code action mode. Possible values are 'all' and 'problems'."
},
"eslint.codeActionsOnSave.rules": {
"scope": "resource",
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
}, {
"type": "null"
}
],
"default": null,
"markdownDescription": "The rules that should be executed when computing the code actions on save or formatting a file. Defaults to the rules configured via the ESLint configuration"
},
"eslint.format.enable": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Enables ESLint as a formatter."
},
"eslint.rules.customizations": {
"items": {
"properties": {
"severity": {
"enum": [
"downgrade",
"error",
"info",
"default",
"upgrade",
"warn",
"off"
],
"type": "string"
},
"rule": {
"type": "string"
}
},
"type": "object"
},
"scope": "resource",
"type": "array",
"description": "Override the severity of one or more rules reported by this extension, regardless of the project's ESLint config. Use globs to apply default severities for multiple rules."
},
"eslint.notebooks.rules.customizations": {
"items": {
"properties": {
"severity": {
"enum": [
"downgrade",
"error",
"info",
"default",
"upgrade",
"warn",
"off"
],
"type": "string"
},
"rule": {
"type": "string"
}
},
"type": "object"
},
"scope": "resource",
"type": "array",
"description": "A special rules customization section for text cells in notebook documents."
},
"eslint.timeBudget.onValidation": {
"scope": "resource",
"type": "object",
"properties": {
"warn": {
"type": "number",
"default": 4000,
"minimum": 0,
"markdownDescription": "The time budget in milliseconds to spend on validation before showing a warning."
},
"error": {
"type": "number",
"default": 8000,
"minimum": 0,
"markdownDescription": "The time budget in milliseconds to spend on validation before showing an error."
}
},
"default": {
"warn": 4000,
"error": 8000
},
"markdownDescription": "The time budget in milliseconds to spend on validation before showing a warning or error."
},
"eslint.timeBudget.onFixes": {
"scope": "resource",
"type": "object",
"properties": {
"warn": {
"type": "number",
"default": 3000,
"minimum": 0,
"markdownDescription": "The time budget in milliseconds to spend on computing fixes before showing a warning."
},
"error": {
"type": "number",
"default": 6000,
"minimum": 0,
"markdownDescription": "The time budget in milliseconds to spend on computing fixes before showing an error."
}
},
"default": {
"warn": 3000,
"error": 6000
},
"markdownDescription": "The time budget in milliseconds to spend on computing fixes before showing a warning or error."
}
}
},
"commands": [
{
"title": "Fix all auto-fixable Problems",
"category": "ESLint",
"command": "eslint.executeAutofix"
},
{
"title": "Create ESLint configuration",
"category": "ESLint",
"command": "eslint.createConfig"
},
{
"title": "Show Output Channel",
"category": "ESLint",
"command": "eslint.showOutputChannel"
},
{
"title": "Migrate Settings",
"category": "ESLint",
"command": "eslint.migrateSettings"
},
{
"title": "Restart ESLint Server",
"category": "ESLint",
"command": "eslint.restart"
},
{
"title": "Revalidate all open files",
"category": "ESLint",
"command": "eslint.revalidate"
}
],
"taskDefinitions": [
{
"type": "eslint"
}
],
"jsonValidation": [
{
"fileMatch": ".eslintrc",
"url": "https://json.schemastore.org/eslintrc"
},
{
"fileMatch": ".eslintrc.json",
"url": "https://json.schemastore.org/eslintrc"
},
{
"fileMatch": "package.json",
"url": "./package-json-schema.json"
}
],
"languages": [
{
"id": "ignore",
"extensions": [
".eslintignore"
]
},
{
"id": "jsonc",
"filenames": [
".eslintrc.json"
]
}
]
},
"scripts": {
"vscode:prepublish": "npm run webpack",
"webpack": "npm run clean && webpack --mode production --config ./client/webpack.config.js && webpack --mode production --config ./server/webpack.config.js",
"webpack:dev": "npm run clean && webpack --mode none --config ./client/webpack.config.js && webpack --mode none --config ./server/webpack.config.js",
"esbuild": "npm run clean && node ./esbuild.js",
"compile": "tsc -b",
"compile:client": "tsc -b ./client/tsconfig.json",
"compile:server": "tsc -b ./server/tsconfig.json",
"watch": "tsc -b -w",
"test": "cd client && npm test && cd ..",
"lint": "node ./build/bin/all.js run lint",
"clean": "rimraf client/out && rimraf server/out",
"postinstall": "node ./build/bin/all.js install",
"symlink:lsp": "node ./build/bin/symlink.js"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"merge-options": "^3.0.4",
"mocha": "^10.3.0",
"rimraf": "^5.0.5",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"shelljs": "^0.8.5",
"esbuild": "^0.23.0"
}
}