@eslinted/defaults 12.17.3 → 12.19.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/dist/index.d.ts +567 -562
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.spec.d.ts +2 -0
- package/dist/index.spec.d.ts.map +1 -0
- package/dist/index.spec.js +154 -0
- package/dist/index.spec.js.map +1 -0
- package/dist/rules/_strings/option.d.ts +1 -1
- package/dist/rules/_strings/option.d.ts.map +1 -1
- package/dist/rules/_strings/option.js +1 -1
- package/dist/rules/_strings/option.js.map +1 -1
- package/dist/rules/_strings/state.d.ts +1 -1
- package/dist/rules/_strings/state.d.ts.map +1 -1
- package/dist/rules/_strings/state.js +1 -1
- package/dist/rules/_strings/state.js.map +1 -1
- package/dist/rules/_strings/state.spec.js +23 -18
- package/dist/rules/_strings/state.spec.js.map +1 -1
- package/dist/rules/css/enable.d.ts +11 -11
- package/dist/rules/css/index.d.ts +11 -11
- package/dist/rules/enable.d.ts +150 -147
- package/dist/rules/enable.d.ts.map +1 -1
- package/dist/rules/enable.js +6 -0
- package/dist/rules/enable.js.map +1 -1
- package/dist/rules/html/index.d.ts +41 -41
- package/dist/rules/html/plugin/index.d.ts +41 -41
- package/dist/rules/index.d.ts +552 -550
- package/dist/rules/index.d.ts.map +1 -1
- package/dist/rules/json/enable.d.ts +4 -4
- package/dist/rules/json/index.d.ts +42 -42
- package/dist/rules/json/plugin/extension.d.ts +19 -19
- package/dist/rules/json/plugin/index.d.ts +19 -19
- package/dist/rules/jsonc/index.d.ts +1 -1
- package/dist/rules/jsonc/plugin/index.d.ts +1 -1
- package/dist/rules/jsoncc/index.d.ts +1 -1
- package/dist/rules/jsoncc/plugin/index.d.ts +1 -1
- package/dist/rules/mocha/chai/expect.d.ts +3 -3
- package/dist/rules/mocha/chai/index.d.ts +1 -1
- package/dist/rules/mocha/disable.d.ts +2 -2
- package/dist/rules/mocha/enable.d.ts +16 -16
- package/dist/rules/mocha/index.d.ts +22 -22
- package/dist/rules/stylistic.d.ts +67 -67
- package/dist/rules/svelte/disable.d.ts +6 -6
- package/dist/rules/svelte/enable.d.ts +67 -67
- package/dist/rules/svelte/extension/disable.d.ts +3 -3
- package/dist/rules/svelte/extension/index.d.ts +2 -2
- package/dist/rules/svelte/index.d.ts +78 -78
- package/dist/rules/ts/disable.d.ts +19 -19
- package/dist/rules/ts/enable.d.ts +86 -86
- package/dist/rules/ts/extension/disable.d.ts +8 -8
- package/dist/rules/ts/extension/index.d.ts +7 -7
- package/dist/rules/ts/index.d.ts +120 -120
- package/dist/rules/yml/enable.d.ts +11 -12
- package/dist/rules/yml/enable.d.ts.map +1 -1
- package/dist/rules/yml/enable.js +0 -1
- package/dist/rules/yml/enable.js.map +1 -1
- package/dist/rules/yml/extension.d.ts +8 -8
- package/dist/rules/yml/index.d.ts +19 -20
- package/dist/rules/yml/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.spec.ts +228 -0
- package/src/index.ts +1 -1
- package/src/rules/_strings/option.ts +1 -2
- package/src/rules/_strings/state.spec.ts +27 -22
- package/src/rules/_strings/state.ts +3 -3
- package/src/rules/enable.ts +6 -0
- package/src/rules/yml/enable.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,17 +1,5 @@
|
|
|
1
1
|
export { settings } from "./settings/index.js";
|
|
2
2
|
export declare const defaults: {
|
|
3
|
-
files: {
|
|
4
|
-
js: string[];
|
|
5
|
-
ts: string[];
|
|
6
|
-
mocha: string[];
|
|
7
|
-
svelte: string[];
|
|
8
|
-
html: string[];
|
|
9
|
-
css: string[];
|
|
10
|
-
json: string[];
|
|
11
|
-
jsonc: string[];
|
|
12
|
-
jsoncc: string[];
|
|
13
|
-
yml: string[];
|
|
14
|
-
};
|
|
15
3
|
ignores: {
|
|
16
4
|
"*": string[];
|
|
17
5
|
js: never[];
|
|
@@ -25,156 +13,168 @@ export declare const defaults: {
|
|
|
25
13
|
jsoncc: never[];
|
|
26
14
|
yml: never[];
|
|
27
15
|
};
|
|
16
|
+
files: {
|
|
17
|
+
js: string[];
|
|
18
|
+
ts: string[];
|
|
19
|
+
mocha: string[];
|
|
20
|
+
svelte: string[];
|
|
21
|
+
html: string[];
|
|
22
|
+
css: string[];
|
|
23
|
+
json: string[];
|
|
24
|
+
jsonc: string[];
|
|
25
|
+
jsoncc: string[];
|
|
26
|
+
yml: string[];
|
|
27
|
+
};
|
|
28
28
|
rules: {
|
|
29
29
|
js: ({
|
|
30
30
|
id: "enable";
|
|
31
31
|
rules: {
|
|
32
32
|
readonly "array-callback-return": readonly [
|
|
33
|
-
|
|
33
|
+
2,
|
|
34
34
|
{
|
|
35
35
|
readonly checkForEach: true;
|
|
36
36
|
readonly allowVoid: true;
|
|
37
37
|
}
|
|
38
38
|
];
|
|
39
|
-
readonly "constructor-super":
|
|
40
|
-
readonly "for-direction":
|
|
41
|
-
readonly "getter-return":
|
|
42
|
-
readonly "no-async-promise-executor":
|
|
43
|
-
readonly "no-await-in-loop":
|
|
44
|
-
readonly "no-class-assign":
|
|
45
|
-
readonly "no-compare-neg-zero":
|
|
46
|
-
readonly "no-cond-assign":
|
|
47
|
-
readonly "no-const-assign":
|
|
48
|
-
readonly "no-constant-binary-expression":
|
|
39
|
+
readonly "constructor-super": 2;
|
|
40
|
+
readonly "for-direction": 2;
|
|
41
|
+
readonly "getter-return": 2;
|
|
42
|
+
readonly "no-async-promise-executor": 2;
|
|
43
|
+
readonly "no-await-in-loop": 2;
|
|
44
|
+
readonly "no-class-assign": 2;
|
|
45
|
+
readonly "no-compare-neg-zero": 2;
|
|
46
|
+
readonly "no-cond-assign": 2;
|
|
47
|
+
readonly "no-const-assign": 2;
|
|
48
|
+
readonly "no-constant-binary-expression": 2;
|
|
49
49
|
readonly "no-constant-condition": readonly [
|
|
50
|
-
|
|
50
|
+
2,
|
|
51
51
|
{
|
|
52
52
|
readonly checkLoops: "all";
|
|
53
53
|
}
|
|
54
54
|
];
|
|
55
|
-
readonly "no-constructor-return":
|
|
56
|
-
readonly "no-control-regex":
|
|
57
|
-
readonly "no-debugger":
|
|
58
|
-
readonly "no-dupe-args":
|
|
59
|
-
readonly "no-dupe-class-members":
|
|
60
|
-
readonly "no-dupe-else-if":
|
|
61
|
-
readonly "no-dupe-keys":
|
|
62
|
-
readonly "no-duplicate-case":
|
|
55
|
+
readonly "no-constructor-return": 2;
|
|
56
|
+
readonly "no-control-regex": 2;
|
|
57
|
+
readonly "no-debugger": 2;
|
|
58
|
+
readonly "no-dupe-args": 2;
|
|
59
|
+
readonly "no-dupe-class-members": 2;
|
|
60
|
+
readonly "no-dupe-else-if": 2;
|
|
61
|
+
readonly "no-dupe-keys": 2;
|
|
62
|
+
readonly "no-duplicate-case": 2;
|
|
63
63
|
readonly "no-duplicate-imports": readonly [
|
|
64
|
-
|
|
64
|
+
2,
|
|
65
65
|
{
|
|
66
66
|
readonly includeExports: true;
|
|
67
67
|
readonly allowSeparateTypeImports: true;
|
|
68
68
|
}
|
|
69
69
|
];
|
|
70
|
-
readonly "no-empty-character-class":
|
|
71
|
-
readonly "no-empty-pattern":
|
|
72
|
-
readonly "no-ex-assign":
|
|
73
|
-
readonly "no-fallthrough":
|
|
74
|
-
readonly "no-func-assign":
|
|
75
|
-
readonly "no-import-assign":
|
|
70
|
+
readonly "no-empty-character-class": 2;
|
|
71
|
+
readonly "no-empty-pattern": 2;
|
|
72
|
+
readonly "no-ex-assign": 2;
|
|
73
|
+
readonly "no-fallthrough": 2;
|
|
74
|
+
readonly "no-func-assign": 2;
|
|
75
|
+
readonly "no-import-assign": 2;
|
|
76
76
|
readonly "no-inner-declarations": readonly [
|
|
77
|
-
|
|
77
|
+
2,
|
|
78
78
|
"both"
|
|
79
79
|
];
|
|
80
|
-
readonly "no-invalid-regexp":
|
|
81
|
-
readonly "no-irregular-whitespace":
|
|
82
|
-
readonly "no-loss-of-precision":
|
|
83
|
-
readonly "no-misleading-character-class":
|
|
84
|
-
readonly "no-new-native-nonconstructor":
|
|
85
|
-
readonly "no-obj-calls":
|
|
80
|
+
readonly "no-invalid-regexp": 2;
|
|
81
|
+
readonly "no-irregular-whitespace": 2;
|
|
82
|
+
readonly "no-loss-of-precision": 2;
|
|
83
|
+
readonly "no-misleading-character-class": 2;
|
|
84
|
+
readonly "no-new-native-nonconstructor": 2;
|
|
85
|
+
readonly "no-obj-calls": 2;
|
|
86
86
|
readonly "no-promise-executor-return": readonly [
|
|
87
|
-
|
|
87
|
+
2,
|
|
88
88
|
{
|
|
89
89
|
readonly allowVoid: true;
|
|
90
90
|
}
|
|
91
91
|
];
|
|
92
|
-
readonly "no-prototype-builtins":
|
|
93
|
-
readonly "no-self-assign":
|
|
94
|
-
readonly "no-self-compare":
|
|
95
|
-
readonly "no-setter-return":
|
|
96
|
-
readonly "no-sparse-arrays":
|
|
97
|
-
readonly "no-template-curly-in-string":
|
|
98
|
-
readonly "no-this-before-super":
|
|
99
|
-
readonly "no-unassigned-vars":
|
|
100
|
-
readonly "no-undef":
|
|
101
|
-
readonly "no-unexpected-multiline":
|
|
102
|
-
readonly "no-unmodified-loop-condition":
|
|
103
|
-
readonly "no-unreachable":
|
|
104
|
-
readonly "no-unreachable-loop":
|
|
105
|
-
readonly "no-unsafe-finally":
|
|
92
|
+
readonly "no-prototype-builtins": 2;
|
|
93
|
+
readonly "no-self-assign": 2;
|
|
94
|
+
readonly "no-self-compare": 2;
|
|
95
|
+
readonly "no-setter-return": 2;
|
|
96
|
+
readonly "no-sparse-arrays": 2;
|
|
97
|
+
readonly "no-template-curly-in-string": 2;
|
|
98
|
+
readonly "no-this-before-super": 2;
|
|
99
|
+
readonly "no-unassigned-vars": 2;
|
|
100
|
+
readonly "no-undef": 2;
|
|
101
|
+
readonly "no-unexpected-multiline": 2;
|
|
102
|
+
readonly "no-unmodified-loop-condition": 2;
|
|
103
|
+
readonly "no-unreachable": 2;
|
|
104
|
+
readonly "no-unreachable-loop": 2;
|
|
105
|
+
readonly "no-unsafe-finally": 2;
|
|
106
106
|
readonly "no-unsafe-negation": readonly [
|
|
107
|
-
|
|
107
|
+
2,
|
|
108
108
|
{
|
|
109
109
|
readonly enforceForOrderingRelations: true;
|
|
110
110
|
}
|
|
111
111
|
];
|
|
112
112
|
readonly "no-unsafe-optional-chaining": readonly [
|
|
113
|
-
|
|
113
|
+
2,
|
|
114
114
|
{
|
|
115
115
|
readonly disallowArithmeticOperators: true;
|
|
116
116
|
}
|
|
117
117
|
];
|
|
118
|
-
readonly "no-unused-private-class-members":
|
|
119
|
-
readonly "no-unused-vars":
|
|
118
|
+
readonly "no-unused-private-class-members": 2;
|
|
119
|
+
readonly "no-unused-vars": 2;
|
|
120
120
|
readonly "no-use-before-define": readonly [
|
|
121
|
-
|
|
121
|
+
2,
|
|
122
122
|
{
|
|
123
123
|
readonly typedefs: false;
|
|
124
124
|
}
|
|
125
125
|
];
|
|
126
|
-
readonly "no-useless-assignment":
|
|
127
|
-
readonly "no-useless-backreference":
|
|
128
|
-
readonly "require-atomic-updates":
|
|
126
|
+
readonly "no-useless-assignment": 2;
|
|
127
|
+
readonly "no-useless-backreference": 2;
|
|
128
|
+
readonly "require-atomic-updates": 2;
|
|
129
129
|
readonly "use-isnan": readonly [
|
|
130
|
-
|
|
130
|
+
2,
|
|
131
131
|
{
|
|
132
132
|
readonly enforceForIndexOf: true;
|
|
133
133
|
}
|
|
134
134
|
];
|
|
135
135
|
readonly "valid-typeof": readonly [
|
|
136
|
-
|
|
136
|
+
2,
|
|
137
137
|
{
|
|
138
138
|
readonly requireStringLiterals: true;
|
|
139
139
|
}
|
|
140
140
|
];
|
|
141
141
|
readonly "accessor-pairs": readonly [
|
|
142
|
-
|
|
142
|
+
2,
|
|
143
143
|
{
|
|
144
144
|
readonly enforceForTSTypes: true;
|
|
145
145
|
}
|
|
146
146
|
];
|
|
147
|
-
readonly "arrow-body-style":
|
|
148
|
-
readonly "block-scoped-var":
|
|
149
|
-
readonly "consistent-return":
|
|
150
|
-
readonly "consistent-this":
|
|
147
|
+
readonly "arrow-body-style": 2;
|
|
148
|
+
readonly "block-scoped-var": 2;
|
|
149
|
+
readonly "consistent-return": 2;
|
|
150
|
+
readonly "consistent-this": 2;
|
|
151
151
|
readonly curly: readonly [
|
|
152
|
-
|
|
152
|
+
2,
|
|
153
153
|
"multi"
|
|
154
154
|
];
|
|
155
|
-
readonly "default-case-last":
|
|
156
|
-
readonly "default-param-last":
|
|
157
|
-
readonly "dot-notation":
|
|
158
|
-
readonly eqeqeq:
|
|
159
|
-
readonly "init-declarations":
|
|
155
|
+
readonly "default-case-last": 2;
|
|
156
|
+
readonly "default-param-last": 2;
|
|
157
|
+
readonly "dot-notation": 2;
|
|
158
|
+
readonly eqeqeq: 2;
|
|
159
|
+
readonly "init-declarations": 2;
|
|
160
160
|
readonly "logical-assignment-operators": readonly [
|
|
161
|
-
|
|
161
|
+
2,
|
|
162
162
|
"always",
|
|
163
163
|
{
|
|
164
164
|
readonly enforceForIfStatements: true;
|
|
165
165
|
}
|
|
166
166
|
];
|
|
167
|
-
readonly "no-alert":
|
|
168
|
-
readonly "no-array-constructor":
|
|
169
|
-
readonly "no-bitwise":
|
|
170
|
-
readonly "no-caller":
|
|
171
|
-
readonly "no-case-declarations":
|
|
172
|
-
readonly "no-continue":
|
|
173
|
-
readonly "no-delete-var":
|
|
174
|
-
readonly "no-div-regex":
|
|
175
|
-
readonly "no-empty":
|
|
167
|
+
readonly "no-alert": 2;
|
|
168
|
+
readonly "no-array-constructor": 2;
|
|
169
|
+
readonly "no-bitwise": 2;
|
|
170
|
+
readonly "no-caller": 2;
|
|
171
|
+
readonly "no-case-declarations": 2;
|
|
172
|
+
readonly "no-continue": 2;
|
|
173
|
+
readonly "no-delete-var": 2;
|
|
174
|
+
readonly "no-div-regex": 2;
|
|
175
|
+
readonly "no-empty": 2;
|
|
176
176
|
readonly "no-empty-function": readonly [
|
|
177
|
-
|
|
177
|
+
2,
|
|
178
178
|
{
|
|
179
179
|
readonly allow: readonly [
|
|
180
180
|
"constructors",
|
|
@@ -185,98 +185,98 @@ export declare const defaults: {
|
|
|
185
185
|
];
|
|
186
186
|
}
|
|
187
187
|
];
|
|
188
|
-
readonly "no-empty-static-block":
|
|
189
|
-
readonly "no-eq-null":
|
|
190
|
-
readonly "no-eval":
|
|
191
|
-
readonly "no-extend-native":
|
|
192
|
-
readonly "no-extra-bind":
|
|
188
|
+
readonly "no-empty-static-block": 2;
|
|
189
|
+
readonly "no-eq-null": 2;
|
|
190
|
+
readonly "no-eval": 2;
|
|
191
|
+
readonly "no-extend-native": 2;
|
|
192
|
+
readonly "no-extra-bind": 2;
|
|
193
193
|
readonly "no-extra-boolean-cast": readonly [
|
|
194
|
-
|
|
194
|
+
2,
|
|
195
195
|
{
|
|
196
196
|
readonly enforceForLogicalOperands: true;
|
|
197
197
|
}
|
|
198
198
|
];
|
|
199
|
-
readonly "no-extra-label":
|
|
200
|
-
readonly "no-global-assign":
|
|
199
|
+
readonly "no-extra-label": 2;
|
|
200
|
+
readonly "no-global-assign": 2;
|
|
201
201
|
readonly "no-implicit-coercion": readonly [
|
|
202
|
-
|
|
202
|
+
2,
|
|
203
203
|
{
|
|
204
204
|
readonly disallowTemplateShorthand: true;
|
|
205
205
|
}
|
|
206
206
|
];
|
|
207
|
-
readonly "no-implied-eval":
|
|
207
|
+
readonly "no-implied-eval": 2;
|
|
208
208
|
readonly "no-invalid-this": readonly [
|
|
209
|
-
|
|
209
|
+
2,
|
|
210
210
|
{
|
|
211
211
|
readonly capIsConstructor: false;
|
|
212
212
|
}
|
|
213
213
|
];
|
|
214
|
-
readonly "no-iterator":
|
|
215
|
-
readonly "no-label-var":
|
|
216
|
-
readonly "no-lone-blocks":
|
|
217
|
-
readonly "no-loop-func":
|
|
218
|
-
readonly "no-multi-assign":
|
|
219
|
-
readonly "no-multi-str":
|
|
220
|
-
readonly "no-new":
|
|
221
|
-
readonly "no-new-func":
|
|
222
|
-
readonly "no-new-wrappers":
|
|
223
|
-
readonly "no-nonoctal-decimal-escape":
|
|
224
|
-
readonly "no-object-constructor":
|
|
225
|
-
readonly "no-octal":
|
|
226
|
-
readonly "no-octal-escape":
|
|
214
|
+
readonly "no-iterator": 2;
|
|
215
|
+
readonly "no-label-var": 2;
|
|
216
|
+
readonly "no-lone-blocks": 2;
|
|
217
|
+
readonly "no-loop-func": 2;
|
|
218
|
+
readonly "no-multi-assign": 2;
|
|
219
|
+
readonly "no-multi-str": 2;
|
|
220
|
+
readonly "no-new": 2;
|
|
221
|
+
readonly "no-new-func": 2;
|
|
222
|
+
readonly "no-new-wrappers": 2;
|
|
223
|
+
readonly "no-nonoctal-decimal-escape": 2;
|
|
224
|
+
readonly "no-object-constructor": 2;
|
|
225
|
+
readonly "no-octal": 2;
|
|
226
|
+
readonly "no-octal-escape": 2;
|
|
227
227
|
readonly "no-param-reassign": readonly [
|
|
228
|
-
|
|
228
|
+
2,
|
|
229
229
|
{
|
|
230
230
|
readonly props: true;
|
|
231
231
|
}
|
|
232
232
|
];
|
|
233
233
|
readonly "no-plusplus": readonly [
|
|
234
|
-
|
|
234
|
+
2,
|
|
235
235
|
{
|
|
236
236
|
readonly allowForLoopAfterthoughts: true;
|
|
237
237
|
}
|
|
238
238
|
];
|
|
239
|
-
readonly "no-proto":
|
|
240
|
-
readonly "no-script-url":
|
|
241
|
-
readonly "no-sequences":
|
|
242
|
-
readonly "no-shadow-restricted-names":
|
|
243
|
-
readonly "no-throw-literal":
|
|
244
|
-
readonly "no-undef-init":
|
|
245
|
-
readonly "no-unneeded-ternary":
|
|
239
|
+
readonly "no-proto": 2;
|
|
240
|
+
readonly "no-script-url": 2;
|
|
241
|
+
readonly "no-sequences": 2;
|
|
242
|
+
readonly "no-shadow-restricted-names": 2;
|
|
243
|
+
readonly "no-throw-literal": 2;
|
|
244
|
+
readonly "no-undef-init": 2;
|
|
245
|
+
readonly "no-unneeded-ternary": 2;
|
|
246
246
|
readonly "no-unused-expressions": readonly [
|
|
247
|
-
|
|
247
|
+
2,
|
|
248
248
|
{
|
|
249
249
|
readonly allowShortCircuit: true;
|
|
250
250
|
readonly allowTernary: true;
|
|
251
251
|
}
|
|
252
252
|
];
|
|
253
|
-
readonly "no-unused-labels":
|
|
254
|
-
readonly "no-useless-call":
|
|
255
|
-
readonly "no-useless-catch":
|
|
256
|
-
readonly "no-useless-computed-key":
|
|
257
|
-
readonly "no-useless-concat":
|
|
258
|
-
readonly "no-useless-constructor":
|
|
253
|
+
readonly "no-unused-labels": 2;
|
|
254
|
+
readonly "no-useless-call": 2;
|
|
255
|
+
readonly "no-useless-catch": 2;
|
|
256
|
+
readonly "no-useless-computed-key": 2;
|
|
257
|
+
readonly "no-useless-concat": 2;
|
|
258
|
+
readonly "no-useless-constructor": 2;
|
|
259
259
|
readonly "no-useless-escape": readonly [
|
|
260
|
-
|
|
260
|
+
2,
|
|
261
261
|
{
|
|
262
262
|
readonly allowRegexCharacters: readonly [
|
|
263
263
|
"-"
|
|
264
264
|
];
|
|
265
265
|
}
|
|
266
266
|
];
|
|
267
|
-
readonly "no-useless-rename":
|
|
268
|
-
readonly "no-useless-return":
|
|
269
|
-
readonly "no-var":
|
|
267
|
+
readonly "no-useless-rename": 2;
|
|
268
|
+
readonly "no-useless-return": 2;
|
|
269
|
+
readonly "no-var": 2;
|
|
270
270
|
readonly "no-void": readonly [
|
|
271
|
-
|
|
271
|
+
2,
|
|
272
272
|
{
|
|
273
273
|
readonly allowAsStatement: true;
|
|
274
274
|
}
|
|
275
275
|
];
|
|
276
|
-
readonly "no-with":
|
|
277
|
-
readonly "object-shorthand":
|
|
276
|
+
readonly "no-with": 2;
|
|
277
|
+
readonly "object-shorthand": 2;
|
|
278
278
|
readonly "one-var": readonly [
|
|
279
|
-
|
|
279
|
+
2,
|
|
280
280
|
{
|
|
281
281
|
readonly var: "consecutive";
|
|
282
282
|
readonly let: "consecutive";
|
|
@@ -286,16 +286,16 @@ export declare const defaults: {
|
|
|
286
286
|
readonly separateRequires: true;
|
|
287
287
|
}
|
|
288
288
|
];
|
|
289
|
-
readonly "operator-assignment":
|
|
290
|
-
readonly "prefer-arrow-callback":
|
|
289
|
+
readonly "operator-assignment": 2;
|
|
290
|
+
readonly "prefer-arrow-callback": 2;
|
|
291
291
|
readonly "prefer-const": readonly [
|
|
292
|
-
|
|
292
|
+
2,
|
|
293
293
|
{
|
|
294
294
|
readonly destructuring: "all";
|
|
295
295
|
}
|
|
296
296
|
];
|
|
297
297
|
readonly "prefer-destructuring": readonly [
|
|
298
|
-
|
|
298
|
+
2,
|
|
299
299
|
{
|
|
300
300
|
readonly AssignmentExpression: {
|
|
301
301
|
readonly array: false;
|
|
@@ -303,36 +303,42 @@ export declare const defaults: {
|
|
|
303
303
|
};
|
|
304
304
|
}
|
|
305
305
|
];
|
|
306
|
-
readonly "prefer-exponentiation-operator":
|
|
307
|
-
readonly "prefer-numeric-literals":
|
|
308
|
-
readonly "prefer-object-has-own":
|
|
309
|
-
readonly "prefer-object-spread":
|
|
310
|
-
readonly "prefer-promise-reject-errors":
|
|
306
|
+
readonly "prefer-exponentiation-operator": 2;
|
|
307
|
+
readonly "prefer-numeric-literals": 2;
|
|
308
|
+
readonly "prefer-object-has-own": 2;
|
|
309
|
+
readonly "prefer-object-spread": 2;
|
|
310
|
+
readonly "prefer-promise-reject-errors": 2;
|
|
311
311
|
readonly "prefer-regex-literals": readonly [
|
|
312
|
-
|
|
312
|
+
2,
|
|
313
313
|
{
|
|
314
314
|
readonly disallowRedundantWrapping: true;
|
|
315
315
|
}
|
|
316
316
|
];
|
|
317
|
-
readonly "prefer-rest-params":
|
|
318
|
-
readonly "prefer-spread":
|
|
317
|
+
readonly "prefer-rest-params": 2;
|
|
318
|
+
readonly "prefer-spread": 2;
|
|
319
|
+
readonly "preserve-caught-error": readonly [
|
|
320
|
+
2,
|
|
321
|
+
{
|
|
322
|
+
readonly requireCatchParameter: true;
|
|
323
|
+
}
|
|
324
|
+
];
|
|
319
325
|
readonly radix: readonly [
|
|
320
|
-
|
|
326
|
+
2,
|
|
321
327
|
"as-needed"
|
|
322
328
|
];
|
|
323
|
-
readonly "require-await":
|
|
324
|
-
readonly "require-unicode-regexp":
|
|
325
|
-
readonly "require-yield":
|
|
326
|
-
readonly "vars-on-top":
|
|
327
|
-
readonly yoda:
|
|
329
|
+
readonly "require-await": 2;
|
|
330
|
+
readonly "require-unicode-regexp": 2;
|
|
331
|
+
readonly "require-yield": 2;
|
|
332
|
+
readonly "vars-on-top": 2;
|
|
333
|
+
readonly yoda: 2;
|
|
328
334
|
};
|
|
329
335
|
} | {
|
|
330
336
|
id: "enable/style";
|
|
331
337
|
rules: {
|
|
332
|
-
readonly "@stylistic/array-bracket-newline":
|
|
333
|
-
readonly "@stylistic/array-bracket-spacing":
|
|
338
|
+
readonly "@stylistic/array-bracket-newline": 2;
|
|
339
|
+
readonly "@stylistic/array-bracket-spacing": 2;
|
|
334
340
|
readonly "@stylistic/array-element-newline": readonly [
|
|
335
|
-
|
|
341
|
+
2,
|
|
336
342
|
{
|
|
337
343
|
readonly consistent: true;
|
|
338
344
|
readonly multiline: true;
|
|
@@ -340,44 +346,44 @@ export declare const defaults: {
|
|
|
340
346
|
}
|
|
341
347
|
];
|
|
342
348
|
readonly "@stylistic/arrow-parens": readonly [
|
|
343
|
-
|
|
349
|
+
2,
|
|
344
350
|
"as-needed"
|
|
345
351
|
];
|
|
346
|
-
readonly "@stylistic/arrow-spacing":
|
|
347
|
-
readonly "@stylistic/block-spacing":
|
|
352
|
+
readonly "@stylistic/arrow-spacing": 2;
|
|
353
|
+
readonly "@stylistic/block-spacing": 2;
|
|
348
354
|
readonly "@stylistic/brace-style": readonly [
|
|
349
|
-
|
|
355
|
+
2,
|
|
350
356
|
"stroustrup",
|
|
351
357
|
{
|
|
352
358
|
readonly allowSingleLine: true;
|
|
353
359
|
}
|
|
354
360
|
];
|
|
355
361
|
readonly "@stylistic/comma-dangle": readonly [
|
|
356
|
-
|
|
362
|
+
2,
|
|
357
363
|
"always-multiline"
|
|
358
364
|
];
|
|
359
|
-
readonly "@stylistic/comma-spacing":
|
|
360
|
-
readonly "@stylistic/comma-style":
|
|
361
|
-
readonly "@stylistic/computed-property-spacing":
|
|
362
|
-
readonly "@stylistic/curly-newline":
|
|
365
|
+
readonly "@stylistic/comma-spacing": 2;
|
|
366
|
+
readonly "@stylistic/comma-style": 2;
|
|
367
|
+
readonly "@stylistic/computed-property-spacing": 2;
|
|
368
|
+
readonly "@stylistic/curly-newline": 2;
|
|
363
369
|
readonly "@stylistic/dot-location": readonly [
|
|
364
|
-
|
|
370
|
+
2,
|
|
365
371
|
"property"
|
|
366
372
|
];
|
|
367
|
-
readonly "@stylistic/eol-last":
|
|
373
|
+
readonly "@stylistic/eol-last": 2;
|
|
368
374
|
readonly "@stylistic/function-call-argument-newline": readonly [
|
|
369
|
-
|
|
375
|
+
2,
|
|
370
376
|
"consistent"
|
|
371
377
|
];
|
|
372
|
-
readonly "@stylistic/function-call-spacing":
|
|
378
|
+
readonly "@stylistic/function-call-spacing": 2;
|
|
373
379
|
readonly "@stylistic/function-paren-newline": readonly [
|
|
374
|
-
|
|
380
|
+
2,
|
|
375
381
|
"multiline-arguments"
|
|
376
382
|
];
|
|
377
|
-
readonly "@stylistic/generator-star-spacing":
|
|
378
|
-
readonly "@stylistic/implicit-arrow-linebreak":
|
|
383
|
+
readonly "@stylistic/generator-star-spacing": 2;
|
|
384
|
+
readonly "@stylistic/implicit-arrow-linebreak": 2;
|
|
379
385
|
readonly "@stylistic/indent": readonly [
|
|
380
|
-
|
|
386
|
+
2,
|
|
381
387
|
2,
|
|
382
388
|
{
|
|
383
389
|
readonly assignmentOperator: 0;
|
|
@@ -391,13 +397,13 @@ export declare const defaults: {
|
|
|
391
397
|
}
|
|
392
398
|
];
|
|
393
399
|
readonly "@stylistic/indent-binary-ops": readonly [
|
|
394
|
-
|
|
400
|
+
2,
|
|
395
401
|
2
|
|
396
402
|
];
|
|
397
|
-
readonly "@stylistic/key-spacing":
|
|
398
|
-
readonly "@stylistic/keyword-spacing":
|
|
403
|
+
readonly "@stylistic/key-spacing": 2;
|
|
404
|
+
readonly "@stylistic/keyword-spacing": 2;
|
|
399
405
|
readonly "@stylistic/lines-between-class-members": readonly [
|
|
400
|
-
|
|
406
|
+
2,
|
|
401
407
|
{
|
|
402
408
|
readonly enforce: readonly [
|
|
403
409
|
{
|
|
@@ -419,7 +425,7 @@ export declare const defaults: {
|
|
|
419
425
|
}
|
|
420
426
|
];
|
|
421
427
|
readonly "@stylistic/max-len": readonly [
|
|
422
|
-
|
|
428
|
+
2,
|
|
423
429
|
{
|
|
424
430
|
readonly code: 300;
|
|
425
431
|
readonly ignoreComments: true;
|
|
@@ -430,19 +436,19 @@ export declare const defaults: {
|
|
|
430
436
|
readonly ignoreRegExpLiterals: true;
|
|
431
437
|
}
|
|
432
438
|
];
|
|
433
|
-
readonly "@stylistic/max-statements-per-line":
|
|
434
|
-
readonly "@stylistic/member-delimiter-style":
|
|
439
|
+
readonly "@stylistic/max-statements-per-line": 2;
|
|
440
|
+
readonly "@stylistic/member-delimiter-style": 2;
|
|
435
441
|
readonly "@stylistic/multiline-ternary": readonly [
|
|
436
|
-
|
|
442
|
+
2,
|
|
437
443
|
"always-multiline"
|
|
438
444
|
];
|
|
439
|
-
readonly "@stylistic/newline-per-chained-call":
|
|
440
|
-
readonly "@stylistic/no-extra-parens":
|
|
441
|
-
readonly "@stylistic/no-extra-semi":
|
|
442
|
-
readonly "@stylistic/no-floating-decimal":
|
|
443
|
-
readonly "@stylistic/no-mixed-spaces-and-tabs":
|
|
445
|
+
readonly "@stylistic/newline-per-chained-call": 2;
|
|
446
|
+
readonly "@stylistic/no-extra-parens": 2;
|
|
447
|
+
readonly "@stylistic/no-extra-semi": 2;
|
|
448
|
+
readonly "@stylistic/no-floating-decimal": 2;
|
|
449
|
+
readonly "@stylistic/no-mixed-spaces-and-tabs": 2;
|
|
444
450
|
readonly "@stylistic/no-multi-spaces": readonly [
|
|
445
|
-
|
|
451
|
+
2,
|
|
446
452
|
{
|
|
447
453
|
readonly exceptions: {
|
|
448
454
|
readonly Property: false;
|
|
@@ -451,22 +457,22 @@ export declare const defaults: {
|
|
|
451
457
|
}
|
|
452
458
|
];
|
|
453
459
|
readonly "@stylistic/no-multiple-empty-lines": readonly [
|
|
454
|
-
|
|
460
|
+
2,
|
|
455
461
|
{
|
|
456
462
|
readonly max: 1;
|
|
457
463
|
readonly maxBOF: 0;
|
|
458
464
|
readonly maxEOF: 0;
|
|
459
465
|
}
|
|
460
466
|
];
|
|
461
|
-
readonly "@stylistic/no-tabs":
|
|
462
|
-
readonly "@stylistic/no-trailing-spaces":
|
|
463
|
-
readonly "@stylistic/no-whitespace-before-property":
|
|
467
|
+
readonly "@stylistic/no-tabs": 2;
|
|
468
|
+
readonly "@stylistic/no-trailing-spaces": 2;
|
|
469
|
+
readonly "@stylistic/no-whitespace-before-property": 2;
|
|
464
470
|
readonly "@stylistic/nonblock-statement-body-position": readonly [
|
|
465
|
-
|
|
471
|
+
2,
|
|
466
472
|
"below"
|
|
467
473
|
];
|
|
468
474
|
readonly "@stylistic/object-curly-newline": readonly [
|
|
469
|
-
|
|
475
|
+
2,
|
|
470
476
|
{
|
|
471
477
|
readonly consistent: true;
|
|
472
478
|
readonly multiline: true;
|
|
@@ -474,27 +480,27 @@ export declare const defaults: {
|
|
|
474
480
|
}
|
|
475
481
|
];
|
|
476
482
|
readonly "@stylistic/object-curly-spacing": readonly [
|
|
477
|
-
|
|
483
|
+
2,
|
|
478
484
|
"always"
|
|
479
485
|
];
|
|
480
|
-
readonly "@stylistic/object-property-newline":
|
|
486
|
+
readonly "@stylistic/object-property-newline": 2;
|
|
481
487
|
readonly "@stylistic/one-var-declaration-per-line": readonly [
|
|
482
|
-
|
|
488
|
+
2,
|
|
483
489
|
"always"
|
|
484
490
|
];
|
|
485
491
|
readonly "@stylistic/operator-linebreak": readonly [
|
|
486
|
-
|
|
492
|
+
2,
|
|
487
493
|
"before"
|
|
488
494
|
];
|
|
489
495
|
readonly "@stylistic/padded-blocks": readonly [
|
|
490
|
-
|
|
496
|
+
2,
|
|
491
497
|
"never",
|
|
492
498
|
{
|
|
493
499
|
readonly allowSingleLineBlocks: true;
|
|
494
500
|
}
|
|
495
501
|
];
|
|
496
502
|
readonly "@stylistic/padding-line-between-statements": readonly [
|
|
497
|
-
|
|
503
|
+
1,
|
|
498
504
|
{
|
|
499
505
|
readonly blankLine: "never";
|
|
500
506
|
readonly prev: readonly [
|
|
@@ -679,36 +685,36 @@ export declare const defaults: {
|
|
|
679
685
|
}
|
|
680
686
|
];
|
|
681
687
|
readonly "@stylistic/quote-props": readonly [
|
|
682
|
-
|
|
688
|
+
2,
|
|
683
689
|
"as-needed",
|
|
684
690
|
{
|
|
685
691
|
readonly keywords: true;
|
|
686
692
|
}
|
|
687
693
|
];
|
|
688
694
|
readonly "@stylistic/quotes": readonly [
|
|
689
|
-
|
|
695
|
+
2,
|
|
690
696
|
"double",
|
|
691
697
|
{
|
|
692
698
|
readonly avoidEscape: true;
|
|
693
699
|
readonly allowTemplateLiterals: "always";
|
|
694
700
|
}
|
|
695
701
|
];
|
|
696
|
-
readonly "@stylistic/rest-spread-spacing":
|
|
697
|
-
readonly "@stylistic/semi":
|
|
698
|
-
readonly "@stylistic/semi-spacing":
|
|
699
|
-
readonly "@stylistic/semi-style":
|
|
700
|
-
readonly "@stylistic/space-before-blocks":
|
|
702
|
+
readonly "@stylistic/rest-spread-spacing": 2;
|
|
703
|
+
readonly "@stylistic/semi": 2;
|
|
704
|
+
readonly "@stylistic/semi-spacing": 2;
|
|
705
|
+
readonly "@stylistic/semi-style": 2;
|
|
706
|
+
readonly "@stylistic/space-before-blocks": 2;
|
|
701
707
|
readonly "@stylistic/space-before-function-paren": readonly [
|
|
702
|
-
|
|
708
|
+
2,
|
|
703
709
|
{
|
|
704
710
|
readonly named: "never";
|
|
705
711
|
}
|
|
706
712
|
];
|
|
707
|
-
readonly "@stylistic/space-in-parens":
|
|
708
|
-
readonly "@stylistic/space-infix-ops":
|
|
709
|
-
readonly "@stylistic/space-unary-ops":
|
|
713
|
+
readonly "@stylistic/space-in-parens": 2;
|
|
714
|
+
readonly "@stylistic/space-infix-ops": 2;
|
|
715
|
+
readonly "@stylistic/space-unary-ops": 2;
|
|
710
716
|
readonly "@stylistic/spaced-comment": readonly [
|
|
711
|
-
|
|
717
|
+
2,
|
|
712
718
|
"always",
|
|
713
719
|
{
|
|
714
720
|
readonly line: {
|
|
@@ -742,11 +748,11 @@ export declare const defaults: {
|
|
|
742
748
|
};
|
|
743
749
|
}
|
|
744
750
|
];
|
|
745
|
-
readonly "@stylistic/switch-colon-spacing":
|
|
746
|
-
readonly "@stylistic/template-curly-spacing":
|
|
747
|
-
readonly "@stylistic/template-tag-spacing":
|
|
751
|
+
readonly "@stylistic/switch-colon-spacing": 2;
|
|
752
|
+
readonly "@stylistic/template-curly-spacing": 2;
|
|
753
|
+
readonly "@stylistic/template-tag-spacing": 2;
|
|
748
754
|
readonly "@stylistic/type-annotation-spacing": readonly [
|
|
749
|
-
|
|
755
|
+
2,
|
|
750
756
|
{
|
|
751
757
|
readonly before: true;
|
|
752
758
|
readonly after: true;
|
|
@@ -758,74 +764,74 @@ export declare const defaults: {
|
|
|
758
764
|
};
|
|
759
765
|
}
|
|
760
766
|
];
|
|
761
|
-
readonly "@stylistic/type-generic-spacing":
|
|
762
|
-
readonly "@stylistic/type-named-tuple-spacing":
|
|
767
|
+
readonly "@stylistic/type-generic-spacing": 2;
|
|
768
|
+
readonly "@stylistic/type-named-tuple-spacing": 2;
|
|
763
769
|
readonly "@stylistic/wrap-iife": readonly [
|
|
764
|
-
|
|
770
|
+
2,
|
|
765
771
|
"inside",
|
|
766
772
|
{
|
|
767
773
|
readonly functionPrototypeMethods: true;
|
|
768
774
|
}
|
|
769
775
|
];
|
|
770
|
-
readonly "@stylistic/wrap-regex":
|
|
771
|
-
readonly "@stylistic/yield-star-spacing":
|
|
776
|
+
readonly "@stylistic/wrap-regex": 2;
|
|
777
|
+
readonly "@stylistic/yield-star-spacing": 2;
|
|
772
778
|
};
|
|
773
779
|
})[];
|
|
774
780
|
ts: ({
|
|
775
781
|
id: "disable";
|
|
776
782
|
rules: {
|
|
777
|
-
readonly "consistent-return":
|
|
778
|
-
readonly "constructor-super":
|
|
779
|
-
readonly "getter-return":
|
|
780
|
-
readonly "no-class-assign":
|
|
781
|
-
readonly "no-const-assign":
|
|
782
|
-
readonly "no-dupe-args":
|
|
783
|
-
readonly "no-dupe-class-members":
|
|
784
|
-
readonly "no-dupe-keys":
|
|
785
|
-
readonly "no-func-assign":
|
|
786
|
-
readonly "no-import-assign":
|
|
787
|
-
readonly "no-invalid-this":
|
|
788
|
-
readonly "no-new-native-nonconstructor":
|
|
789
|
-
readonly "no-obj-calls":
|
|
790
|
-
readonly "no-redeclare":
|
|
791
|
-
readonly "no-setter-return":
|
|
792
|
-
readonly "no-this-before-super":
|
|
793
|
-
readonly "no-undef":
|
|
794
|
-
readonly "no-unreachable":
|
|
795
|
-
readonly "no-unsafe-negation":
|
|
783
|
+
readonly "consistent-return": 0;
|
|
784
|
+
readonly "constructor-super": 0;
|
|
785
|
+
readonly "getter-return": 0;
|
|
786
|
+
readonly "no-class-assign": 0;
|
|
787
|
+
readonly "no-const-assign": 0;
|
|
788
|
+
readonly "no-dupe-args": 0;
|
|
789
|
+
readonly "no-dupe-class-members": 0;
|
|
790
|
+
readonly "no-dupe-keys": 0;
|
|
791
|
+
readonly "no-func-assign": 0;
|
|
792
|
+
readonly "no-import-assign": 0;
|
|
793
|
+
readonly "no-invalid-this": 0;
|
|
794
|
+
readonly "no-new-native-nonconstructor": 0;
|
|
795
|
+
readonly "no-obj-calls": 0;
|
|
796
|
+
readonly "no-redeclare": 0;
|
|
797
|
+
readonly "no-setter-return": 0;
|
|
798
|
+
readonly "no-this-before-super": 0;
|
|
799
|
+
readonly "no-undef": 0;
|
|
800
|
+
readonly "no-unreachable": 0;
|
|
801
|
+
readonly "no-unsafe-negation": 0;
|
|
796
802
|
};
|
|
797
803
|
} | {
|
|
798
804
|
id: "disable/extension";
|
|
799
805
|
rules: {
|
|
800
|
-
readonly "dot-notation":
|
|
801
|
-
readonly "no-implied-eval":
|
|
802
|
-
readonly "no-restricted-imports":
|
|
803
|
-
readonly "no-throw-literal":
|
|
804
|
-
readonly "no-unused-vars":
|
|
805
|
-
readonly "prefer-destructuring":
|
|
806
|
-
readonly "prefer-promise-reject-errors":
|
|
807
|
-
readonly "require-await":
|
|
806
|
+
readonly "dot-notation": 0;
|
|
807
|
+
readonly "no-implied-eval": 0;
|
|
808
|
+
readonly "no-restricted-imports": 0;
|
|
809
|
+
readonly "no-throw-literal": 0;
|
|
810
|
+
readonly "no-unused-vars": 0;
|
|
811
|
+
readonly "prefer-destructuring": 0;
|
|
812
|
+
readonly "prefer-promise-reject-errors": 0;
|
|
813
|
+
readonly "require-await": 0;
|
|
808
814
|
};
|
|
809
815
|
} | {
|
|
810
816
|
id: "enable";
|
|
811
817
|
rules: {
|
|
812
|
-
readonly "@typescript-eslint/await-thenable":
|
|
813
|
-
readonly "@typescript-eslint/ban-ts-comment":
|
|
814
|
-
readonly "@typescript-eslint/ban-tslint-comment":
|
|
815
|
-
readonly "@typescript-eslint/class-literal-property-style":
|
|
816
|
-
readonly "@typescript-eslint/consistent-generic-constructors":
|
|
817
|
-
readonly "@typescript-eslint/consistent-indexed-object-style":
|
|
818
|
+
readonly "@typescript-eslint/await-thenable": 2;
|
|
819
|
+
readonly "@typescript-eslint/ban-ts-comment": 2;
|
|
820
|
+
readonly "@typescript-eslint/ban-tslint-comment": 2;
|
|
821
|
+
readonly "@typescript-eslint/class-literal-property-style": 2;
|
|
822
|
+
readonly "@typescript-eslint/consistent-generic-constructors": 2;
|
|
823
|
+
readonly "@typescript-eslint/consistent-indexed-object-style": 2;
|
|
818
824
|
readonly "@typescript-eslint/consistent-type-assertions": readonly [
|
|
819
|
-
|
|
825
|
+
2,
|
|
820
826
|
{
|
|
821
827
|
readonly arrayLiteralTypeAssertions: "never";
|
|
822
828
|
readonly objectLiteralTypeAssertions: "never";
|
|
823
829
|
}
|
|
824
830
|
];
|
|
825
|
-
readonly "@typescript-eslint/consistent-type-exports":
|
|
826
|
-
readonly "@typescript-eslint/consistent-type-imports":
|
|
831
|
+
readonly "@typescript-eslint/consistent-type-exports": 2;
|
|
832
|
+
readonly "@typescript-eslint/consistent-type-imports": 2;
|
|
827
833
|
readonly "@typescript-eslint/explicit-member-accessibility": readonly [
|
|
828
|
-
|
|
834
|
+
2,
|
|
829
835
|
{
|
|
830
836
|
readonly overrides: {
|
|
831
837
|
readonly constructors: "no-public";
|
|
@@ -833,114 +839,114 @@ export declare const defaults: {
|
|
|
833
839
|
}
|
|
834
840
|
];
|
|
835
841
|
readonly "@typescript-eslint/member-ordering": readonly [
|
|
836
|
-
|
|
842
|
+
2,
|
|
837
843
|
{
|
|
838
844
|
readonly default: {
|
|
839
845
|
readonly optionalityOrder: "required-first";
|
|
840
846
|
};
|
|
841
847
|
}
|
|
842
848
|
];
|
|
843
|
-
readonly "@typescript-eslint/method-signature-style":
|
|
844
|
-
readonly "@typescript-eslint/no-array-delete":
|
|
845
|
-
readonly "@typescript-eslint/no-base-to-string":
|
|
846
|
-
readonly "@typescript-eslint/no-confusing-non-null-assertion":
|
|
849
|
+
readonly "@typescript-eslint/method-signature-style": 2;
|
|
850
|
+
readonly "@typescript-eslint/no-array-delete": 2;
|
|
851
|
+
readonly "@typescript-eslint/no-base-to-string": 2;
|
|
852
|
+
readonly "@typescript-eslint/no-confusing-non-null-assertion": 2;
|
|
847
853
|
readonly "@typescript-eslint/no-confusing-void-expression": readonly [
|
|
848
|
-
|
|
854
|
+
2,
|
|
849
855
|
{
|
|
850
856
|
readonly ignoreArrowShorthand: true;
|
|
851
857
|
readonly ignoreVoidOperator: true;
|
|
852
858
|
readonly ignoreVoidReturningFunctions: true;
|
|
853
859
|
}
|
|
854
860
|
];
|
|
855
|
-
readonly "@typescript-eslint/no-duplicate-enum-values":
|
|
856
|
-
readonly "@typescript-eslint/no-duplicate-type-constituents":
|
|
857
|
-
readonly "@typescript-eslint/no-dynamic-delete":
|
|
858
|
-
readonly "@typescript-eslint/no-empty-object-type":
|
|
861
|
+
readonly "@typescript-eslint/no-duplicate-enum-values": 2;
|
|
862
|
+
readonly "@typescript-eslint/no-duplicate-type-constituents": 2;
|
|
863
|
+
readonly "@typescript-eslint/no-dynamic-delete": 2;
|
|
864
|
+
readonly "@typescript-eslint/no-empty-object-type": 2;
|
|
859
865
|
readonly "@typescript-eslint/no-explicit-any": readonly [
|
|
860
|
-
|
|
866
|
+
2,
|
|
861
867
|
{
|
|
862
868
|
readonly fixToUnknown: true;
|
|
863
869
|
}
|
|
864
870
|
];
|
|
865
|
-
readonly "@typescript-eslint/no-extra-non-null-assertion":
|
|
871
|
+
readonly "@typescript-eslint/no-extra-non-null-assertion": 2;
|
|
866
872
|
readonly "@typescript-eslint/no-extraneous-class": readonly [
|
|
867
|
-
|
|
873
|
+
2,
|
|
868
874
|
{
|
|
869
875
|
readonly allowEmpty: true;
|
|
870
876
|
}
|
|
871
877
|
];
|
|
872
878
|
readonly "@typescript-eslint/no-floating-promises": readonly [
|
|
873
|
-
|
|
879
|
+
2,
|
|
874
880
|
{
|
|
875
881
|
readonly checkThenables: true;
|
|
876
882
|
}
|
|
877
883
|
];
|
|
878
|
-
readonly "@typescript-eslint/no-for-in-array":
|
|
879
|
-
readonly "@typescript-eslint/no-import-type-side-effects":
|
|
880
|
-
readonly "@typescript-eslint/no-inferrable-types":
|
|
881
|
-
readonly "@typescript-eslint/no-invalid-void-type":
|
|
884
|
+
readonly "@typescript-eslint/no-for-in-array": 2;
|
|
885
|
+
readonly "@typescript-eslint/no-import-type-side-effects": 2;
|
|
886
|
+
readonly "@typescript-eslint/no-inferrable-types": 2;
|
|
887
|
+
readonly "@typescript-eslint/no-invalid-void-type": 2;
|
|
882
888
|
readonly "@typescript-eslint/no-meaningless-void-operator": readonly [
|
|
883
|
-
|
|
889
|
+
2,
|
|
884
890
|
{
|
|
885
891
|
readonly checkNever: true;
|
|
886
892
|
}
|
|
887
893
|
];
|
|
888
|
-
readonly "@typescript-eslint/no-misused-new":
|
|
889
|
-
readonly "@typescript-eslint/no-misused-promises":
|
|
890
|
-
readonly "@typescript-eslint/no-misused-spread":
|
|
891
|
-
readonly "@typescript-eslint/no-mixed-enums":
|
|
892
|
-
readonly "@typescript-eslint/no-non-null-asserted-nullish-coalescing":
|
|
893
|
-
readonly "@typescript-eslint/no-non-null-asserted-optional-chain":
|
|
894
|
-
readonly "@typescript-eslint/no-redundant-type-constituents":
|
|
895
|
-
readonly "@typescript-eslint/no-require-imports":
|
|
896
|
-
readonly "@typescript-eslint/no-this-alias":
|
|
897
|
-
readonly "@typescript-eslint/no-unnecessary-boolean-literal-compare":
|
|
898
|
-
readonly "@typescript-eslint/no-unnecessary-condition":
|
|
899
|
-
readonly "@typescript-eslint/no-unnecessary-parameter-property-assignment":
|
|
900
|
-
readonly "@typescript-eslint/no-unnecessary-qualifier":
|
|
901
|
-
readonly "@typescript-eslint/no-unnecessary-template-expression":
|
|
902
|
-
readonly "@typescript-eslint/no-unnecessary-type-arguments":
|
|
903
|
-
readonly "@typescript-eslint/no-unnecessary-type-assertion":
|
|
904
|
-
readonly "@typescript-eslint/no-unnecessary-type-constraint":
|
|
905
|
-
readonly "@typescript-eslint/no-unnecessary-type-conversion":
|
|
906
|
-
readonly "@typescript-eslint/no-unnecessary-type-parameters":
|
|
907
|
-
readonly "@typescript-eslint/no-unsafe-argument":
|
|
908
|
-
readonly "@typescript-eslint/no-unsafe-assignment":
|
|
909
|
-
readonly "@typescript-eslint/no-unsafe-call":
|
|
910
|
-
readonly "@typescript-eslint/no-unsafe-declaration-merging":
|
|
911
|
-
readonly "@typescript-eslint/no-unsafe-enum-comparison":
|
|
912
|
-
readonly "@typescript-eslint/no-unsafe-function-type":
|
|
913
|
-
readonly "@typescript-eslint/no-unsafe-member-access":
|
|
914
|
-
readonly "@typescript-eslint/no-unsafe-return":
|
|
915
|
-
readonly "@typescript-eslint/no-unsafe-unary-minus":
|
|
916
|
-
readonly "@typescript-eslint/no-useless-empty-export":
|
|
917
|
-
readonly "@typescript-eslint/no-wrapper-object-types":
|
|
894
|
+
readonly "@typescript-eslint/no-misused-new": 2;
|
|
895
|
+
readonly "@typescript-eslint/no-misused-promises": 2;
|
|
896
|
+
readonly "@typescript-eslint/no-misused-spread": 2;
|
|
897
|
+
readonly "@typescript-eslint/no-mixed-enums": 2;
|
|
898
|
+
readonly "@typescript-eslint/no-non-null-asserted-nullish-coalescing": 2;
|
|
899
|
+
readonly "@typescript-eslint/no-non-null-asserted-optional-chain": 2;
|
|
900
|
+
readonly "@typescript-eslint/no-redundant-type-constituents": 2;
|
|
901
|
+
readonly "@typescript-eslint/no-require-imports": 2;
|
|
902
|
+
readonly "@typescript-eslint/no-this-alias": 2;
|
|
903
|
+
readonly "@typescript-eslint/no-unnecessary-boolean-literal-compare": 2;
|
|
904
|
+
readonly "@typescript-eslint/no-unnecessary-condition": 2;
|
|
905
|
+
readonly "@typescript-eslint/no-unnecessary-parameter-property-assignment": 2;
|
|
906
|
+
readonly "@typescript-eslint/no-unnecessary-qualifier": 2;
|
|
907
|
+
readonly "@typescript-eslint/no-unnecessary-template-expression": 2;
|
|
908
|
+
readonly "@typescript-eslint/no-unnecessary-type-arguments": 2;
|
|
909
|
+
readonly "@typescript-eslint/no-unnecessary-type-assertion": 2;
|
|
910
|
+
readonly "@typescript-eslint/no-unnecessary-type-constraint": 2;
|
|
911
|
+
readonly "@typescript-eslint/no-unnecessary-type-conversion": 2;
|
|
912
|
+
readonly "@typescript-eslint/no-unnecessary-type-parameters": 2;
|
|
913
|
+
readonly "@typescript-eslint/no-unsafe-argument": 2;
|
|
914
|
+
readonly "@typescript-eslint/no-unsafe-assignment": 2;
|
|
915
|
+
readonly "@typescript-eslint/no-unsafe-call": 2;
|
|
916
|
+
readonly "@typescript-eslint/no-unsafe-declaration-merging": 2;
|
|
917
|
+
readonly "@typescript-eslint/no-unsafe-enum-comparison": 2;
|
|
918
|
+
readonly "@typescript-eslint/no-unsafe-function-type": 2;
|
|
919
|
+
readonly "@typescript-eslint/no-unsafe-member-access": 2;
|
|
920
|
+
readonly "@typescript-eslint/no-unsafe-return": 2;
|
|
921
|
+
readonly "@typescript-eslint/no-unsafe-unary-minus": 2;
|
|
922
|
+
readonly "@typescript-eslint/no-useless-empty-export": 2;
|
|
923
|
+
readonly "@typescript-eslint/no-wrapper-object-types": 2;
|
|
918
924
|
readonly "@typescript-eslint/parameter-properties": readonly [
|
|
919
|
-
|
|
925
|
+
2,
|
|
920
926
|
{
|
|
921
927
|
readonly prefer: "parameter-property";
|
|
922
928
|
}
|
|
923
929
|
];
|
|
924
|
-
readonly "@typescript-eslint/prefer-as-const":
|
|
925
|
-
readonly "@typescript-eslint/prefer-enum-initializers":
|
|
926
|
-
readonly "@typescript-eslint/prefer-find":
|
|
927
|
-
readonly "@typescript-eslint/prefer-for-of":
|
|
928
|
-
readonly "@typescript-eslint/prefer-function-type":
|
|
929
|
-
readonly "@typescript-eslint/prefer-includes":
|
|
930
|
-
readonly "@typescript-eslint/prefer-literal-enum-member":
|
|
931
|
-
readonly "@typescript-eslint/prefer-namespace-keyword":
|
|
932
|
-
readonly "@typescript-eslint/prefer-nullish-coalescing":
|
|
933
|
-
readonly "@typescript-eslint/prefer-optional-chain":
|
|
934
|
-
readonly "@typescript-eslint/prefer-readonly":
|
|
935
|
-
readonly "@typescript-eslint/prefer-reduce-type-parameter":
|
|
936
|
-
readonly "@typescript-eslint/prefer-regexp-exec":
|
|
937
|
-
readonly "@typescript-eslint/prefer-return-this-type":
|
|
938
|
-
readonly "@typescript-eslint/prefer-string-starts-ends-with":
|
|
939
|
-
readonly "@typescript-eslint/promise-function-async":
|
|
940
|
-
readonly "@typescript-eslint/related-getter-setter-pairs":
|
|
941
|
-
readonly "@typescript-eslint/require-array-sort-compare":
|
|
930
|
+
readonly "@typescript-eslint/prefer-as-const": 2;
|
|
931
|
+
readonly "@typescript-eslint/prefer-enum-initializers": 2;
|
|
932
|
+
readonly "@typescript-eslint/prefer-find": 2;
|
|
933
|
+
readonly "@typescript-eslint/prefer-for-of": 2;
|
|
934
|
+
readonly "@typescript-eslint/prefer-function-type": 2;
|
|
935
|
+
readonly "@typescript-eslint/prefer-includes": 2;
|
|
936
|
+
readonly "@typescript-eslint/prefer-literal-enum-member": 2;
|
|
937
|
+
readonly "@typescript-eslint/prefer-namespace-keyword": 2;
|
|
938
|
+
readonly "@typescript-eslint/prefer-nullish-coalescing": 2;
|
|
939
|
+
readonly "@typescript-eslint/prefer-optional-chain": 2;
|
|
940
|
+
readonly "@typescript-eslint/prefer-readonly": 2;
|
|
941
|
+
readonly "@typescript-eslint/prefer-reduce-type-parameter": 2;
|
|
942
|
+
readonly "@typescript-eslint/prefer-regexp-exec": 2;
|
|
943
|
+
readonly "@typescript-eslint/prefer-return-this-type": 2;
|
|
944
|
+
readonly "@typescript-eslint/prefer-string-starts-ends-with": 2;
|
|
945
|
+
readonly "@typescript-eslint/promise-function-async": 2;
|
|
946
|
+
readonly "@typescript-eslint/related-getter-setter-pairs": 2;
|
|
947
|
+
readonly "@typescript-eslint/require-array-sort-compare": 2;
|
|
942
948
|
readonly "@typescript-eslint/restrict-plus-operands": readonly [
|
|
943
|
-
|
|
949
|
+
2,
|
|
944
950
|
{
|
|
945
951
|
readonly allowAny: false;
|
|
946
952
|
readonly allowBoolean: false;
|
|
@@ -950,47 +956,47 @@ export declare const defaults: {
|
|
|
950
956
|
}
|
|
951
957
|
];
|
|
952
958
|
readonly "@typescript-eslint/restrict-template-expressions": readonly [
|
|
953
|
-
|
|
959
|
+
2,
|
|
954
960
|
{
|
|
955
961
|
readonly allowNullish: false;
|
|
956
962
|
readonly allowNever: false;
|
|
957
963
|
readonly allowRegExp: false;
|
|
958
964
|
}
|
|
959
965
|
];
|
|
960
|
-
readonly "@typescript-eslint/return-await":
|
|
966
|
+
readonly "@typescript-eslint/return-await": 2;
|
|
961
967
|
readonly "@typescript-eslint/strict-boolean-expressions": readonly [
|
|
962
|
-
|
|
968
|
+
2,
|
|
963
969
|
{
|
|
964
970
|
readonly allowNullableObject: false;
|
|
965
971
|
readonly allowString: false;
|
|
966
972
|
}
|
|
967
973
|
];
|
|
968
|
-
readonly "@typescript-eslint/switch-exhaustiveness-check":
|
|
969
|
-
readonly "@typescript-eslint/unbound-method":
|
|
970
|
-
readonly "@typescript-eslint/unified-signatures":
|
|
971
|
-
readonly "@typescript-eslint/use-unknown-in-catch-callback-variable":
|
|
974
|
+
readonly "@typescript-eslint/switch-exhaustiveness-check": 2;
|
|
975
|
+
readonly "@typescript-eslint/unbound-method": 2;
|
|
976
|
+
readonly "@typescript-eslint/unified-signatures": 2;
|
|
977
|
+
readonly "@typescript-eslint/use-unknown-in-catch-callback-variable": 2;
|
|
972
978
|
};
|
|
973
979
|
} | {
|
|
974
980
|
id: "enable/extension";
|
|
975
981
|
rules: {
|
|
976
982
|
readonly "@typescript-eslint/dot-notation": readonly [
|
|
977
|
-
|
|
983
|
+
2,
|
|
978
984
|
{
|
|
979
985
|
readonly allowPrivateClassPropertyAccess: true;
|
|
980
986
|
readonly allowProtectedClassPropertyAccess: true;
|
|
981
987
|
readonly allowIndexSignaturePropertyAccess: true;
|
|
982
988
|
}
|
|
983
989
|
];
|
|
984
|
-
readonly "@typescript-eslint/no-implied-eval":
|
|
985
|
-
readonly "@typescript-eslint/no-unused-vars":
|
|
990
|
+
readonly "@typescript-eslint/no-implied-eval": 2;
|
|
991
|
+
readonly "@typescript-eslint/no-unused-vars": 2;
|
|
986
992
|
readonly "@typescript-eslint/only-throw-error": readonly [
|
|
987
|
-
|
|
993
|
+
2,
|
|
988
994
|
{
|
|
989
995
|
readonly allowThrowingAny: false;
|
|
990
996
|
}
|
|
991
997
|
];
|
|
992
998
|
readonly "@typescript-eslint/prefer-destructuring": readonly [
|
|
993
|
-
|
|
999
|
+
2,
|
|
994
1000
|
{
|
|
995
1001
|
readonly AssignmentExpression: {
|
|
996
1002
|
readonly array: false;
|
|
@@ -999,45 +1005,45 @@ export declare const defaults: {
|
|
|
999
1005
|
}
|
|
1000
1006
|
];
|
|
1001
1007
|
readonly "@typescript-eslint/prefer-promise-reject-errors": readonly [
|
|
1002
|
-
|
|
1008
|
+
2,
|
|
1003
1009
|
{
|
|
1004
1010
|
readonly allowThrowingUnknown: true;
|
|
1005
1011
|
}
|
|
1006
1012
|
];
|
|
1007
|
-
readonly "@typescript-eslint/require-await":
|
|
1013
|
+
readonly "@typescript-eslint/require-await": 2;
|
|
1008
1014
|
};
|
|
1009
1015
|
})[];
|
|
1010
1016
|
mocha: ({
|
|
1011
1017
|
id: "disable";
|
|
1012
1018
|
rules: {
|
|
1013
|
-
readonly "prefer-arrow-callback":
|
|
1014
|
-
readonly "no-unused-expressions":
|
|
1019
|
+
readonly "prefer-arrow-callback": 0;
|
|
1020
|
+
readonly "no-unused-expressions": 0;
|
|
1015
1021
|
};
|
|
1016
1022
|
} | {
|
|
1017
1023
|
id: "enable";
|
|
1018
1024
|
rules: {
|
|
1019
|
-
readonly "mocha/handle-done-callback":
|
|
1020
|
-
readonly "mocha/max-top-level-suites":
|
|
1021
|
-
readonly "mocha/no-async-suite":
|
|
1022
|
-
readonly "mocha/no-empty-title":
|
|
1023
|
-
readonly "mocha/no-exclusive-tests":
|
|
1024
|
-
readonly "mocha/no-exports":
|
|
1025
|
-
readonly "mocha/no-global-tests":
|
|
1026
|
-
readonly "mocha/no-identical-title":
|
|
1027
|
-
readonly "mocha/no-mocha-arrows":
|
|
1028
|
-
readonly "mocha/no-nested-tests":
|
|
1029
|
-
readonly "mocha/no-pending-tests":
|
|
1030
|
-
readonly "mocha/no-return-and-callback":
|
|
1031
|
-
readonly "mocha/no-return-from-async":
|
|
1032
|
-
readonly "mocha/no-sibling-hooks":
|
|
1033
|
-
readonly "mocha/no-top-level-hooks":
|
|
1034
|
-
readonly "mocha/prefer-arrow-callback":
|
|
1025
|
+
readonly "mocha/handle-done-callback": 2;
|
|
1026
|
+
readonly "mocha/max-top-level-suites": 2;
|
|
1027
|
+
readonly "mocha/no-async-suite": 2;
|
|
1028
|
+
readonly "mocha/no-empty-title": 2;
|
|
1029
|
+
readonly "mocha/no-exclusive-tests": 2;
|
|
1030
|
+
readonly "mocha/no-exports": 2;
|
|
1031
|
+
readonly "mocha/no-global-tests": 2;
|
|
1032
|
+
readonly "mocha/no-identical-title": 2;
|
|
1033
|
+
readonly "mocha/no-mocha-arrows": 2;
|
|
1034
|
+
readonly "mocha/no-nested-tests": 2;
|
|
1035
|
+
readonly "mocha/no-pending-tests": 2;
|
|
1036
|
+
readonly "mocha/no-return-and-callback": 2;
|
|
1037
|
+
readonly "mocha/no-return-from-async": 2;
|
|
1038
|
+
readonly "mocha/no-sibling-hooks": 2;
|
|
1039
|
+
readonly "mocha/no-top-level-hooks": 2;
|
|
1040
|
+
readonly "mocha/prefer-arrow-callback": 2;
|
|
1035
1041
|
};
|
|
1036
1042
|
} | {
|
|
1037
1043
|
id: string;
|
|
1038
1044
|
rules: {
|
|
1039
1045
|
readonly "chai-friendly/no-unused-expressions": readonly [
|
|
1040
|
-
|
|
1046
|
+
2,
|
|
1041
1047
|
{
|
|
1042
1048
|
readonly allowShortCircuit: true;
|
|
1043
1049
|
readonly allowTernary: true;
|
|
@@ -1047,54 +1053,54 @@ export declare const defaults: {
|
|
|
1047
1053
|
} | {
|
|
1048
1054
|
id: string;
|
|
1049
1055
|
rules: {
|
|
1050
|
-
readonly "chai-expect/no-inner-compare":
|
|
1051
|
-
readonly "chai-expect/no-inner-literal":
|
|
1052
|
-
readonly "chai-expect/missing-assertion":
|
|
1056
|
+
readonly "chai-expect/no-inner-compare": 2;
|
|
1057
|
+
readonly "chai-expect/no-inner-literal": 2;
|
|
1058
|
+
readonly "chai-expect/missing-assertion": 2;
|
|
1053
1059
|
};
|
|
1054
1060
|
})[];
|
|
1055
1061
|
svelte: ({
|
|
1056
1062
|
id: "disable";
|
|
1057
1063
|
rules: {
|
|
1058
|
-
readonly "no-inner-declarations":
|
|
1059
|
-
readonly "no-self-assign":
|
|
1060
|
-
readonly "no-unused-vars":
|
|
1061
|
-
readonly "@typescript-eslint/no-unused-vars":
|
|
1062
|
-
readonly "prefer-const":
|
|
1063
|
-
readonly "@stylistic/indent":
|
|
1064
|
+
readonly "no-inner-declarations": 0;
|
|
1065
|
+
readonly "no-self-assign": 0;
|
|
1066
|
+
readonly "no-unused-vars": 0;
|
|
1067
|
+
readonly "@typescript-eslint/no-unused-vars": 0;
|
|
1068
|
+
readonly "prefer-const": 0;
|
|
1069
|
+
readonly "@stylistic/indent": 0;
|
|
1064
1070
|
};
|
|
1065
1071
|
} | {
|
|
1066
1072
|
id: "disable/extension";
|
|
1067
1073
|
rules: {
|
|
1068
|
-
readonly "no-inner-declarations":
|
|
1069
|
-
readonly "no-self-assign":
|
|
1070
|
-
readonly "@stylistic/no-trailing-spaces":
|
|
1074
|
+
readonly "no-inner-declarations": 0;
|
|
1075
|
+
readonly "no-self-assign": 0;
|
|
1076
|
+
readonly "@stylistic/no-trailing-spaces": 0;
|
|
1071
1077
|
};
|
|
1072
1078
|
} | {
|
|
1073
1079
|
id: "enable";
|
|
1074
1080
|
rules: {
|
|
1075
|
-
readonly "svelte/infinite-reactive-loop":
|
|
1076
|
-
readonly "svelte/no-dom-manipulating":
|
|
1077
|
-
readonly "svelte/no-dupe-else-if-blocks":
|
|
1078
|
-
readonly "svelte/no-dupe-on-directives":
|
|
1079
|
-
readonly "svelte/no-dupe-style-properties":
|
|
1080
|
-
readonly "svelte/no-dupe-use-directives":
|
|
1081
|
-
readonly "svelte/no-not-function-handler":
|
|
1082
|
-
readonly "svelte/no-object-in-text-mustaches":
|
|
1083
|
-
readonly "svelte/no-raw-special-elements":
|
|
1084
|
-
readonly "svelte/no-reactive-reassign":
|
|
1085
|
-
readonly "svelte/no-shorthand-style-property-overrides":
|
|
1086
|
-
readonly "svelte/no-store-async":
|
|
1087
|
-
readonly "svelte/no-top-level-browser-globals":
|
|
1088
|
-
readonly "svelte/no-unknown-style-directive-property":
|
|
1089
|
-
readonly "svelte/prefer-svelte-reactivity":
|
|
1090
|
-
readonly "svelte/require-store-callbacks-use-set-param":
|
|
1091
|
-
readonly "svelte/require-store-reactive-access":
|
|
1092
|
-
readonly "svelte/valid-compile":
|
|
1093
|
-
readonly "svelte/valid-style-parse":
|
|
1094
|
-
readonly "svelte/no-at-html-tags":
|
|
1095
|
-
readonly "svelte/no-target-blank":
|
|
1081
|
+
readonly "svelte/infinite-reactive-loop": 2;
|
|
1082
|
+
readonly "svelte/no-dom-manipulating": 2;
|
|
1083
|
+
readonly "svelte/no-dupe-else-if-blocks": 2;
|
|
1084
|
+
readonly "svelte/no-dupe-on-directives": 2;
|
|
1085
|
+
readonly "svelte/no-dupe-style-properties": 2;
|
|
1086
|
+
readonly "svelte/no-dupe-use-directives": 2;
|
|
1087
|
+
readonly "svelte/no-not-function-handler": 2;
|
|
1088
|
+
readonly "svelte/no-object-in-text-mustaches": 2;
|
|
1089
|
+
readonly "svelte/no-raw-special-elements": 2;
|
|
1090
|
+
readonly "svelte/no-reactive-reassign": 2;
|
|
1091
|
+
readonly "svelte/no-shorthand-style-property-overrides": 2;
|
|
1092
|
+
readonly "svelte/no-store-async": 2;
|
|
1093
|
+
readonly "svelte/no-top-level-browser-globals": 2;
|
|
1094
|
+
readonly "svelte/no-unknown-style-directive-property": 2;
|
|
1095
|
+
readonly "svelte/prefer-svelte-reactivity": 2;
|
|
1096
|
+
readonly "svelte/require-store-callbacks-use-set-param": 2;
|
|
1097
|
+
readonly "svelte/require-store-reactive-access": 2;
|
|
1098
|
+
readonly "svelte/valid-compile": 2;
|
|
1099
|
+
readonly "svelte/valid-style-parse": 2;
|
|
1100
|
+
readonly "svelte/no-at-html-tags": 2;
|
|
1101
|
+
readonly "svelte/no-target-blank": 2;
|
|
1096
1102
|
readonly "svelte/block-lang": readonly [
|
|
1097
|
-
|
|
1103
|
+
2,
|
|
1098
1104
|
{
|
|
1099
1105
|
readonly script: readonly [
|
|
1100
1106
|
"ts"
|
|
@@ -1104,60 +1110,60 @@ export declare const defaults: {
|
|
|
1104
1110
|
];
|
|
1105
1111
|
}
|
|
1106
1112
|
];
|
|
1107
|
-
readonly "svelte/button-has-type":
|
|
1108
|
-
readonly "svelte/no-add-event-listener":
|
|
1109
|
-
readonly "svelte/no-at-debug-tags":
|
|
1110
|
-
readonly "svelte/no-ignored-unsubscribe":
|
|
1111
|
-
readonly "svelte/no-immutable-reactive-statements":
|
|
1112
|
-
readonly "svelte/no-inline-styles":
|
|
1113
|
-
readonly "svelte/no-reactive-functions":
|
|
1114
|
-
readonly "svelte/no-reactive-literals":
|
|
1115
|
-
readonly "svelte/no-svelte-internal":
|
|
1116
|
-
readonly "svelte/no-unnecessary-state-wrap":
|
|
1113
|
+
readonly "svelte/button-has-type": 2;
|
|
1114
|
+
readonly "svelte/no-add-event-listener": 2;
|
|
1115
|
+
readonly "svelte/no-at-debug-tags": 2;
|
|
1116
|
+
readonly "svelte/no-ignored-unsubscribe": 2;
|
|
1117
|
+
readonly "svelte/no-immutable-reactive-statements": 2;
|
|
1118
|
+
readonly "svelte/no-inline-styles": 2;
|
|
1119
|
+
readonly "svelte/no-reactive-functions": 2;
|
|
1120
|
+
readonly "svelte/no-reactive-literals": 2;
|
|
1121
|
+
readonly "svelte/no-svelte-internal": 2;
|
|
1122
|
+
readonly "svelte/no-unnecessary-state-wrap": 2;
|
|
1117
1123
|
readonly "svelte/no-unused-props": readonly [
|
|
1118
|
-
|
|
1124
|
+
2,
|
|
1119
1125
|
{
|
|
1120
1126
|
readonly checkImportedTypes: true;
|
|
1121
1127
|
}
|
|
1122
1128
|
];
|
|
1123
|
-
readonly "svelte/no-unused-svelte-ignore":
|
|
1124
|
-
readonly "svelte/no-useless-children-snippet":
|
|
1125
|
-
readonly "svelte/no-useless-mustaches":
|
|
1129
|
+
readonly "svelte/no-unused-svelte-ignore": 2;
|
|
1130
|
+
readonly "svelte/no-useless-children-snippet": 2;
|
|
1131
|
+
readonly "svelte/no-useless-mustaches": 2;
|
|
1126
1132
|
readonly "svelte/prefer-const": readonly [
|
|
1127
|
-
|
|
1133
|
+
2,
|
|
1128
1134
|
{
|
|
1129
1135
|
readonly destructuring: "all";
|
|
1130
1136
|
}
|
|
1131
1137
|
];
|
|
1132
|
-
readonly "svelte/prefer-destructured-store-props":
|
|
1133
|
-
readonly "svelte/prefer-writable-derived":
|
|
1134
|
-
readonly "svelte/require-each-key":
|
|
1135
|
-
readonly "svelte/require-event-dispatcher-types":
|
|
1136
|
-
readonly "svelte/require-optimized-style-attribute":
|
|
1137
|
-
readonly "svelte/require-stores-init":
|
|
1138
|
-
readonly "svelte/valid-each-key":
|
|
1138
|
+
readonly "svelte/prefer-destructured-store-props": 2;
|
|
1139
|
+
readonly "svelte/prefer-writable-derived": 2;
|
|
1140
|
+
readonly "svelte/require-each-key": 2;
|
|
1141
|
+
readonly "svelte/require-event-dispatcher-types": 2;
|
|
1142
|
+
readonly "svelte/require-optimized-style-attribute": 2;
|
|
1143
|
+
readonly "svelte/require-stores-init": 2;
|
|
1144
|
+
readonly "svelte/valid-each-key": 2;
|
|
1139
1145
|
readonly "svelte/consistent-selector-style": readonly [
|
|
1140
|
-
|
|
1146
|
+
2,
|
|
1141
1147
|
{
|
|
1142
1148
|
readonly checkGlobal: true;
|
|
1143
1149
|
}
|
|
1144
1150
|
];
|
|
1145
|
-
readonly "svelte/derived-has-same-inputs-outputs":
|
|
1151
|
+
readonly "svelte/derived-has-same-inputs-outputs": 2;
|
|
1146
1152
|
readonly "svelte/first-attribute-linebreak": readonly [
|
|
1147
|
-
|
|
1153
|
+
2,
|
|
1148
1154
|
{
|
|
1149
1155
|
readonly singleline: "below";
|
|
1150
1156
|
}
|
|
1151
1157
|
];
|
|
1152
|
-
readonly "svelte/html-closing-bracket-new-line":
|
|
1158
|
+
readonly "svelte/html-closing-bracket-new-line": 2;
|
|
1153
1159
|
readonly "svelte/html-closing-bracket-spacing": readonly [
|
|
1154
|
-
|
|
1160
|
+
2,
|
|
1155
1161
|
{
|
|
1156
1162
|
readonly selfClosingTag: "never";
|
|
1157
1163
|
}
|
|
1158
1164
|
];
|
|
1159
1165
|
readonly "svelte/html-quotes": readonly [
|
|
1160
|
-
|
|
1166
|
+
2,
|
|
1161
1167
|
{
|
|
1162
1168
|
readonly prefer: "double";
|
|
1163
1169
|
readonly dynamic: {
|
|
@@ -1165,82 +1171,82 @@ export declare const defaults: {
|
|
|
1165
1171
|
};
|
|
1166
1172
|
}
|
|
1167
1173
|
];
|
|
1168
|
-
readonly "svelte/html-self-closing":
|
|
1169
|
-
readonly "svelte/indent":
|
|
1170
|
-
readonly "svelte/max-attributes-per-line":
|
|
1171
|
-
readonly "svelte/mustache-spacing":
|
|
1172
|
-
readonly "svelte/no-extra-reactive-curlies":
|
|
1173
|
-
readonly "svelte/no-spaces-around-equal-signs-in-attribute":
|
|
1174
|
+
readonly "svelte/html-self-closing": 2;
|
|
1175
|
+
readonly "svelte/indent": 2;
|
|
1176
|
+
readonly "svelte/max-attributes-per-line": 2;
|
|
1177
|
+
readonly "svelte/mustache-spacing": 2;
|
|
1178
|
+
readonly "svelte/no-extra-reactive-curlies": 2;
|
|
1179
|
+
readonly "svelte/no-spaces-around-equal-signs-in-attribute": 2;
|
|
1174
1180
|
readonly "svelte/prefer-class-directive": readonly [
|
|
1175
|
-
|
|
1181
|
+
2,
|
|
1176
1182
|
{
|
|
1177
1183
|
readonly prefer: "empty";
|
|
1178
1184
|
}
|
|
1179
1185
|
];
|
|
1180
|
-
readonly "svelte/prefer-style-directive":
|
|
1181
|
-
readonly "svelte/require-event-prefix":
|
|
1182
|
-
readonly "svelte/shorthand-attribute":
|
|
1183
|
-
readonly "svelte/shorthand-directive":
|
|
1184
|
-
readonly "svelte/spaced-html-comment":
|
|
1185
|
-
readonly "svelte/no-export-load-in-svelte-module-in-kit-pages":
|
|
1186
|
-
readonly "svelte/no-navigation-without-resolve":
|
|
1187
|
-
readonly "svelte/valid-prop-names-in-kit-pages":
|
|
1188
|
-
readonly "svelte/comment-directive":
|
|
1189
|
-
readonly "svelte/system":
|
|
1186
|
+
readonly "svelte/prefer-style-directive": 2;
|
|
1187
|
+
readonly "svelte/require-event-prefix": 2;
|
|
1188
|
+
readonly "svelte/shorthand-attribute": 2;
|
|
1189
|
+
readonly "svelte/shorthand-directive": 2;
|
|
1190
|
+
readonly "svelte/spaced-html-comment": 2;
|
|
1191
|
+
readonly "svelte/no-export-load-in-svelte-module-in-kit-pages": 2;
|
|
1192
|
+
readonly "svelte/no-navigation-without-resolve": 2;
|
|
1193
|
+
readonly "svelte/valid-prop-names-in-kit-pages": 2;
|
|
1194
|
+
readonly "svelte/comment-directive": 2;
|
|
1195
|
+
readonly "svelte/system": 2;
|
|
1190
1196
|
};
|
|
1191
1197
|
} | {
|
|
1192
1198
|
id: "enable/extension";
|
|
1193
1199
|
rules: {
|
|
1194
1200
|
readonly "svelte/no-inner-declarations": readonly [
|
|
1195
|
-
|
|
1201
|
+
2,
|
|
1196
1202
|
"both"
|
|
1197
1203
|
];
|
|
1198
|
-
readonly "svelte/no-trailing-spaces":
|
|
1204
|
+
readonly "svelte/no-trailing-spaces": 2;
|
|
1199
1205
|
};
|
|
1200
1206
|
})[];
|
|
1201
1207
|
html: {
|
|
1202
1208
|
id: "enable/plugin";
|
|
1203
1209
|
rules: {
|
|
1204
|
-
readonly "@html-eslint/no-duplicate-attrs":
|
|
1205
|
-
readonly "@html-eslint/no-duplicate-class":
|
|
1206
|
-
readonly "@html-eslint/no-duplicate-id":
|
|
1207
|
-
readonly "@html-eslint/no-duplicate-in-head":
|
|
1208
|
-
readonly "@html-eslint/no-ineffective-attrs":
|
|
1209
|
-
readonly "@html-eslint/no-invalid-entity":
|
|
1210
|
-
readonly "@html-eslint/no-nested-interactive":
|
|
1211
|
-
readonly "@html-eslint/no-obsolete-tags":
|
|
1212
|
-
readonly "@html-eslint/no-target-blank":
|
|
1213
|
-
readonly "@html-eslint/require-button-type":
|
|
1214
|
-
readonly "@html-eslint/require-closing-tags":
|
|
1215
|
-
readonly "@html-eslint/require-doctype":
|
|
1216
|
-
readonly "@html-eslint/require-li-container":
|
|
1217
|
-
readonly "@html-eslint/require-meta-charset":
|
|
1218
|
-
readonly "@html-eslint/use-baseline":
|
|
1219
|
-
readonly "@html-eslint/no-multiple-h1":
|
|
1220
|
-
readonly "@html-eslint/require-lang":
|
|
1221
|
-
readonly "@html-eslint/no-abstract-roles":
|
|
1222
|
-
readonly "@html-eslint/no-accesskey-attrs":
|
|
1223
|
-
readonly "@html-eslint/no-aria-hidden-body":
|
|
1224
|
-
readonly "@html-eslint/no-aria-hidden-on-focusable":
|
|
1225
|
-
readonly "@html-eslint/no-empty-headings":
|
|
1226
|
-
readonly "@html-eslint/no-heading-inside-button":
|
|
1227
|
-
readonly "@html-eslint/no-invalid-role":
|
|
1228
|
-
readonly "@html-eslint/no-non-scalable-viewport":
|
|
1229
|
-
readonly "@html-eslint/no-positive-tabindex":
|
|
1230
|
-
readonly "@html-eslint/no-skip-heading-levels":
|
|
1231
|
-
readonly "@html-eslint/require-form-method":
|
|
1232
|
-
readonly "@html-eslint/require-frame-title":
|
|
1233
|
-
readonly "@html-eslint/require-img-alt":
|
|
1234
|
-
readonly "@html-eslint/require-input-label":
|
|
1235
|
-
readonly "@html-eslint/require-meta-viewport":
|
|
1210
|
+
readonly "@html-eslint/no-duplicate-attrs": 2;
|
|
1211
|
+
readonly "@html-eslint/no-duplicate-class": 2;
|
|
1212
|
+
readonly "@html-eslint/no-duplicate-id": 2;
|
|
1213
|
+
readonly "@html-eslint/no-duplicate-in-head": 2;
|
|
1214
|
+
readonly "@html-eslint/no-ineffective-attrs": 2;
|
|
1215
|
+
readonly "@html-eslint/no-invalid-entity": 2;
|
|
1216
|
+
readonly "@html-eslint/no-nested-interactive": 2;
|
|
1217
|
+
readonly "@html-eslint/no-obsolete-tags": 2;
|
|
1218
|
+
readonly "@html-eslint/no-target-blank": 2;
|
|
1219
|
+
readonly "@html-eslint/require-button-type": 2;
|
|
1220
|
+
readonly "@html-eslint/require-closing-tags": 2;
|
|
1221
|
+
readonly "@html-eslint/require-doctype": 2;
|
|
1222
|
+
readonly "@html-eslint/require-li-container": 2;
|
|
1223
|
+
readonly "@html-eslint/require-meta-charset": 2;
|
|
1224
|
+
readonly "@html-eslint/use-baseline": 2;
|
|
1225
|
+
readonly "@html-eslint/no-multiple-h1": 2;
|
|
1226
|
+
readonly "@html-eslint/require-lang": 2;
|
|
1227
|
+
readonly "@html-eslint/no-abstract-roles": 2;
|
|
1228
|
+
readonly "@html-eslint/no-accesskey-attrs": 2;
|
|
1229
|
+
readonly "@html-eslint/no-aria-hidden-body": 2;
|
|
1230
|
+
readonly "@html-eslint/no-aria-hidden-on-focusable": 2;
|
|
1231
|
+
readonly "@html-eslint/no-empty-headings": 2;
|
|
1232
|
+
readonly "@html-eslint/no-heading-inside-button": 2;
|
|
1233
|
+
readonly "@html-eslint/no-invalid-role": 2;
|
|
1234
|
+
readonly "@html-eslint/no-non-scalable-viewport": 2;
|
|
1235
|
+
readonly "@html-eslint/no-positive-tabindex": 2;
|
|
1236
|
+
readonly "@html-eslint/no-skip-heading-levels": 2;
|
|
1237
|
+
readonly "@html-eslint/require-form-method": 2;
|
|
1238
|
+
readonly "@html-eslint/require-frame-title": 2;
|
|
1239
|
+
readonly "@html-eslint/require-img-alt": 2;
|
|
1240
|
+
readonly "@html-eslint/require-input-label": 2;
|
|
1241
|
+
readonly "@html-eslint/require-meta-viewport": 2;
|
|
1236
1242
|
readonly "@html-eslint/attrs-newline": readonly [
|
|
1237
|
-
|
|
1243
|
+
2,
|
|
1238
1244
|
{
|
|
1239
1245
|
readonly ifAttrsMoreThan: 0;
|
|
1240
1246
|
}
|
|
1241
1247
|
];
|
|
1242
1248
|
readonly "@html-eslint/element-newline": readonly [
|
|
1243
|
-
|
|
1249
|
+
2,
|
|
1244
1250
|
{
|
|
1245
1251
|
readonly skip: readonly [
|
|
1246
1252
|
"head"
|
|
@@ -1251,94 +1257,94 @@ export declare const defaults: {
|
|
|
1251
1257
|
}
|
|
1252
1258
|
];
|
|
1253
1259
|
readonly "@html-eslint/indent": readonly [
|
|
1254
|
-
|
|
1260
|
+
2,
|
|
1255
1261
|
2
|
|
1256
1262
|
];
|
|
1257
|
-
readonly "@html-eslint/lowercase":
|
|
1263
|
+
readonly "@html-eslint/lowercase": 2;
|
|
1258
1264
|
readonly "@html-eslint/no-extra-spacing-attrs": readonly [
|
|
1259
|
-
|
|
1265
|
+
2,
|
|
1260
1266
|
{
|
|
1261
1267
|
readonly disallowMissing: true;
|
|
1262
1268
|
readonly disallowTabs: true;
|
|
1263
1269
|
readonly disallowInAssignment: true;
|
|
1264
1270
|
}
|
|
1265
1271
|
];
|
|
1266
|
-
readonly "@html-eslint/no-extra-spacing-text":
|
|
1272
|
+
readonly "@html-eslint/no-extra-spacing-text": 2;
|
|
1267
1273
|
readonly "@html-eslint/no-multiple-empty-lines": readonly [
|
|
1268
|
-
|
|
1274
|
+
2,
|
|
1269
1275
|
{
|
|
1270
1276
|
readonly max: 1;
|
|
1271
1277
|
}
|
|
1272
1278
|
];
|
|
1273
|
-
readonly "@html-eslint/no-trailing-spaces":
|
|
1274
|
-
readonly "@html-eslint/quotes":
|
|
1279
|
+
readonly "@html-eslint/no-trailing-spaces": 2;
|
|
1280
|
+
readonly "@html-eslint/quotes": 2;
|
|
1275
1281
|
};
|
|
1276
1282
|
}[];
|
|
1277
1283
|
css: {
|
|
1278
1284
|
id: "enable";
|
|
1279
1285
|
rules: {
|
|
1280
|
-
readonly "css/font-family-fallbacks":
|
|
1281
|
-
readonly "css/no-duplicate-imports":
|
|
1282
|
-
readonly "css/no-duplicate-keyframe-selectors":
|
|
1283
|
-
readonly "css/no-empty-blocks":
|
|
1284
|
-
readonly "css/no-important":
|
|
1285
|
-
readonly "css/no-invalid-at-rule-placement":
|
|
1286
|
-
readonly "css/no-invalid-at-rules":
|
|
1287
|
-
readonly "css/no-invalid-named-grid-areas":
|
|
1288
|
-
readonly "css/prefer-logical-properties":
|
|
1289
|
-
readonly "css/relative-font-units":
|
|
1290
|
-
readonly "css/use-baseline":
|
|
1286
|
+
readonly "css/font-family-fallbacks": 2;
|
|
1287
|
+
readonly "css/no-duplicate-imports": 2;
|
|
1288
|
+
readonly "css/no-duplicate-keyframe-selectors": 2;
|
|
1289
|
+
readonly "css/no-empty-blocks": 2;
|
|
1290
|
+
readonly "css/no-important": 2;
|
|
1291
|
+
readonly "css/no-invalid-at-rule-placement": 2;
|
|
1292
|
+
readonly "css/no-invalid-at-rules": 2;
|
|
1293
|
+
readonly "css/no-invalid-named-grid-areas": 2;
|
|
1294
|
+
readonly "css/prefer-logical-properties": 2;
|
|
1295
|
+
readonly "css/relative-font-units": 2;
|
|
1296
|
+
readonly "css/use-baseline": 2;
|
|
1291
1297
|
};
|
|
1292
1298
|
}[];
|
|
1293
1299
|
json: ({
|
|
1294
1300
|
id: "enable";
|
|
1295
1301
|
rules: {
|
|
1296
|
-
readonly "json/no-duplicate-keys":
|
|
1297
|
-
readonly "json/no-unsafe-values":
|
|
1298
|
-
readonly "json/no-unnormalized-keys":
|
|
1299
|
-
readonly "json/top-level-interop":
|
|
1302
|
+
readonly "json/no-duplicate-keys": 2;
|
|
1303
|
+
readonly "json/no-unsafe-values": 2;
|
|
1304
|
+
readonly "json/no-unnormalized-keys": 2;
|
|
1305
|
+
readonly "json/top-level-interop": 2;
|
|
1300
1306
|
};
|
|
1301
1307
|
} | {
|
|
1302
1308
|
id: "enable/plugin";
|
|
1303
1309
|
rules: {
|
|
1304
|
-
readonly "jsonc/no-bigint-literals":
|
|
1305
|
-
readonly "jsonc/no-binary-expression":
|
|
1306
|
-
readonly "jsonc/no-binary-numeric-literals":
|
|
1307
|
-
readonly "jsonc/no-comments":
|
|
1308
|
-
readonly "jsonc/no-escape-sequence-in-identifier":
|
|
1309
|
-
readonly "jsonc/no-hexadecimal-numeric-literals":
|
|
1310
|
-
readonly "jsonc/no-infinity":
|
|
1311
|
-
readonly "jsonc/no-nan":
|
|
1312
|
-
readonly "jsonc/no-number-props":
|
|
1313
|
-
readonly "jsonc/no-numeric-separators":
|
|
1314
|
-
readonly "jsonc/no-octal-numeric-literals":
|
|
1315
|
-
readonly "jsonc/no-parenthesized":
|
|
1316
|
-
readonly "jsonc/no-plus-sign":
|
|
1317
|
-
readonly "jsonc/no-regexp-literals":
|
|
1318
|
-
readonly "jsonc/no-template-literals":
|
|
1319
|
-
readonly "jsonc/no-undefined-value":
|
|
1320
|
-
readonly "jsonc/no-unicode-codepoint-escapes":
|
|
1321
|
-
readonly "jsonc/valid-json-number":
|
|
1322
|
-
readonly "jsonc/vue-custom-block/no-parsing-error":
|
|
1310
|
+
readonly "jsonc/no-bigint-literals": 2;
|
|
1311
|
+
readonly "jsonc/no-binary-expression": 2;
|
|
1312
|
+
readonly "jsonc/no-binary-numeric-literals": 2;
|
|
1313
|
+
readonly "jsonc/no-comments": 2;
|
|
1314
|
+
readonly "jsonc/no-escape-sequence-in-identifier": 2;
|
|
1315
|
+
readonly "jsonc/no-hexadecimal-numeric-literals": 2;
|
|
1316
|
+
readonly "jsonc/no-infinity": 2;
|
|
1317
|
+
readonly "jsonc/no-nan": 2;
|
|
1318
|
+
readonly "jsonc/no-number-props": 2;
|
|
1319
|
+
readonly "jsonc/no-numeric-separators": 2;
|
|
1320
|
+
readonly "jsonc/no-octal-numeric-literals": 2;
|
|
1321
|
+
readonly "jsonc/no-parenthesized": 2;
|
|
1322
|
+
readonly "jsonc/no-plus-sign": 2;
|
|
1323
|
+
readonly "jsonc/no-regexp-literals": 2;
|
|
1324
|
+
readonly "jsonc/no-template-literals": 2;
|
|
1325
|
+
readonly "jsonc/no-undefined-value": 2;
|
|
1326
|
+
readonly "jsonc/no-unicode-codepoint-escapes": 2;
|
|
1327
|
+
readonly "jsonc/valid-json-number": 2;
|
|
1328
|
+
readonly "jsonc/vue-custom-block/no-parsing-error": 2;
|
|
1323
1329
|
};
|
|
1324
1330
|
} | {
|
|
1325
1331
|
id: "enable/plugin/extension";
|
|
1326
1332
|
rules: {
|
|
1327
|
-
readonly "jsonc/array-bracket-spacing":
|
|
1333
|
+
readonly "jsonc/array-bracket-spacing": 2;
|
|
1328
1334
|
readonly "jsonc/array-element-newline": readonly [
|
|
1329
|
-
|
|
1335
|
+
2,
|
|
1330
1336
|
"consistent"
|
|
1331
1337
|
];
|
|
1332
|
-
readonly "jsonc/comma-dangle":
|
|
1333
|
-
readonly "jsonc/comma-style":
|
|
1338
|
+
readonly "jsonc/comma-dangle": 2;
|
|
1339
|
+
readonly "jsonc/comma-style": 2;
|
|
1334
1340
|
readonly "jsonc/indent": readonly [
|
|
1335
|
-
|
|
1341
|
+
2,
|
|
1336
1342
|
2
|
|
1337
1343
|
];
|
|
1338
|
-
readonly "jsonc/key-spacing":
|
|
1339
|
-
readonly "jsonc/no-floating-decimal":
|
|
1344
|
+
readonly "jsonc/key-spacing": 2;
|
|
1345
|
+
readonly "jsonc/no-floating-decimal": 2;
|
|
1340
1346
|
readonly "jsonc/no-irregular-whitespace": readonly [
|
|
1341
|
-
|
|
1347
|
+
2,
|
|
1342
1348
|
{
|
|
1343
1349
|
readonly skipStrings: true;
|
|
1344
1350
|
readonly skipComments: true;
|
|
@@ -1347,13 +1353,13 @@ export declare const defaults: {
|
|
|
1347
1353
|
readonly skipJSXText: true;
|
|
1348
1354
|
}
|
|
1349
1355
|
];
|
|
1350
|
-
readonly "jsonc/no-multi-str":
|
|
1351
|
-
readonly "jsonc/no-octal-escape":
|
|
1352
|
-
readonly "jsonc/no-octal":
|
|
1353
|
-
readonly "jsonc/no-sparse-arrays":
|
|
1354
|
-
readonly "jsonc/no-useless-escape":
|
|
1356
|
+
readonly "jsonc/no-multi-str": 2;
|
|
1357
|
+
readonly "jsonc/no-octal-escape": 2;
|
|
1358
|
+
readonly "jsonc/no-octal": 2;
|
|
1359
|
+
readonly "jsonc/no-sparse-arrays": 2;
|
|
1360
|
+
readonly "jsonc/no-useless-escape": 2;
|
|
1355
1361
|
readonly "jsonc/object-curly-newline": readonly [
|
|
1356
|
-
|
|
1362
|
+
2,
|
|
1357
1363
|
{
|
|
1358
1364
|
readonly consistent: true;
|
|
1359
1365
|
readonly multiline: true;
|
|
@@ -1361,26 +1367,26 @@ export declare const defaults: {
|
|
|
1361
1367
|
}
|
|
1362
1368
|
];
|
|
1363
1369
|
readonly "jsonc/object-curly-spacing": readonly [
|
|
1364
|
-
|
|
1370
|
+
2,
|
|
1365
1371
|
"always"
|
|
1366
1372
|
];
|
|
1367
|
-
readonly "jsonc/object-property-newline":
|
|
1368
|
-
readonly "jsonc/quote-props":
|
|
1369
|
-
readonly "jsonc/quotes":
|
|
1370
|
-
readonly "jsonc/space-unary-ops":
|
|
1373
|
+
readonly "jsonc/object-property-newline": 2;
|
|
1374
|
+
readonly "jsonc/quote-props": 2;
|
|
1375
|
+
readonly "jsonc/quotes": 2;
|
|
1376
|
+
readonly "jsonc/space-unary-ops": 2;
|
|
1371
1377
|
};
|
|
1372
1378
|
})[];
|
|
1373
1379
|
jsonc: {
|
|
1374
1380
|
id: "disable/plugin";
|
|
1375
1381
|
rules: {
|
|
1376
|
-
readonly "jsonc/no-comments":
|
|
1382
|
+
readonly "jsonc/no-comments": 0;
|
|
1377
1383
|
};
|
|
1378
1384
|
}[];
|
|
1379
1385
|
jsoncc: {
|
|
1380
1386
|
id: "disable/plugin";
|
|
1381
1387
|
rules: {
|
|
1382
1388
|
readonly "jsonc/comma-dangle": readonly [
|
|
1383
|
-
|
|
1389
|
+
2,
|
|
1384
1390
|
"always-multiline"
|
|
1385
1391
|
];
|
|
1386
1392
|
};
|
|
@@ -1388,24 +1394,23 @@ export declare const defaults: {
|
|
|
1388
1394
|
yml: ({
|
|
1389
1395
|
id: "enable/plugin";
|
|
1390
1396
|
rules: {
|
|
1391
|
-
readonly "yml/block-mapping-colon-indicator-newline":
|
|
1392
|
-
readonly "yml/block-mapping-question-indicator-newline":
|
|
1393
|
-
readonly "yml/block-mapping":
|
|
1394
|
-
readonly "yml/block-sequence-hyphen-indicator-newline":
|
|
1395
|
-
readonly "yml/block-sequence":
|
|
1396
|
-
readonly "yml/indent":
|
|
1397
|
-
readonly "yml/no-empty-key":
|
|
1398
|
-
readonly "yml/no-empty-sequence-entry":
|
|
1399
|
-
readonly "yml/no-tab-indent":
|
|
1400
|
-
readonly "yml/no-trailing-zeros":
|
|
1401
|
-
readonly "yml/require-string-key":
|
|
1402
|
-
readonly "yml/vue-custom-block/no-parsing-error": "error";
|
|
1397
|
+
readonly "yml/block-mapping-colon-indicator-newline": 2;
|
|
1398
|
+
readonly "yml/block-mapping-question-indicator-newline": 2;
|
|
1399
|
+
readonly "yml/block-mapping": 2;
|
|
1400
|
+
readonly "yml/block-sequence-hyphen-indicator-newline": 2;
|
|
1401
|
+
readonly "yml/block-sequence": 2;
|
|
1402
|
+
readonly "yml/indent": 2;
|
|
1403
|
+
readonly "yml/no-empty-key": 2;
|
|
1404
|
+
readonly "yml/no-empty-sequence-entry": 2;
|
|
1405
|
+
readonly "yml/no-tab-indent": 2;
|
|
1406
|
+
readonly "yml/no-trailing-zeros": 2;
|
|
1407
|
+
readonly "yml/require-string-key": 2;
|
|
1403
1408
|
};
|
|
1404
1409
|
} | {
|
|
1405
1410
|
id: "enable/plugin/extension";
|
|
1406
1411
|
rules: {
|
|
1407
1412
|
readonly "yml/flow-mapping-curly-newline": readonly [
|
|
1408
|
-
|
|
1413
|
+
2,
|
|
1409
1414
|
{
|
|
1410
1415
|
readonly consistent: true;
|
|
1411
1416
|
readonly multiline: true;
|
|
@@ -1413,15 +1418,15 @@ export declare const defaults: {
|
|
|
1413
1418
|
}
|
|
1414
1419
|
];
|
|
1415
1420
|
readonly "yml/flow-mapping-curly-spacing": readonly [
|
|
1416
|
-
|
|
1421
|
+
2,
|
|
1417
1422
|
"always"
|
|
1418
1423
|
];
|
|
1419
|
-
readonly "yml/flow-sequence-bracket-newline":
|
|
1420
|
-
readonly "yml/flow-sequence-bracket-spacing":
|
|
1421
|
-
readonly "yml/key-spacing":
|
|
1422
|
-
readonly "yml/no-irregular-whitespace":
|
|
1424
|
+
readonly "yml/flow-sequence-bracket-newline": 2;
|
|
1425
|
+
readonly "yml/flow-sequence-bracket-spacing": 2;
|
|
1426
|
+
readonly "yml/key-spacing": 2;
|
|
1427
|
+
readonly "yml/no-irregular-whitespace": 2;
|
|
1423
1428
|
readonly "yml/no-multiple-empty-lines": readonly [
|
|
1424
|
-
|
|
1429
|
+
2,
|
|
1425
1430
|
{
|
|
1426
1431
|
readonly max: 1;
|
|
1427
1432
|
readonly maxBOF: 0;
|
|
@@ -1429,7 +1434,7 @@ export declare const defaults: {
|
|
|
1429
1434
|
}
|
|
1430
1435
|
];
|
|
1431
1436
|
readonly "yml/spaced-comment": readonly [
|
|
1432
|
-
|
|
1437
|
+
2,
|
|
1433
1438
|
"always",
|
|
1434
1439
|
{
|
|
1435
1440
|
readonly exceptions: readonly [
|