@eslinted/defaults 12.18.0 → 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 +562 -563
- 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 +148 -148
- 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 +550 -551
- 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/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,42 +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
319
|
readonly "preserve-caught-error": readonly [
|
|
320
|
-
|
|
320
|
+
2,
|
|
321
321
|
{
|
|
322
322
|
readonly requireCatchParameter: true;
|
|
323
323
|
}
|
|
324
324
|
];
|
|
325
325
|
readonly radix: readonly [
|
|
326
|
-
|
|
326
|
+
2,
|
|
327
327
|
"as-needed"
|
|
328
328
|
];
|
|
329
|
-
readonly "require-await":
|
|
330
|
-
readonly "require-unicode-regexp":
|
|
331
|
-
readonly "require-yield":
|
|
332
|
-
readonly "vars-on-top":
|
|
333
|
-
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;
|
|
334
334
|
};
|
|
335
335
|
} | {
|
|
336
336
|
id: "enable/style";
|
|
337
337
|
rules: {
|
|
338
|
-
readonly "@stylistic/array-bracket-newline":
|
|
339
|
-
readonly "@stylistic/array-bracket-spacing":
|
|
338
|
+
readonly "@stylistic/array-bracket-newline": 2;
|
|
339
|
+
readonly "@stylistic/array-bracket-spacing": 2;
|
|
340
340
|
readonly "@stylistic/array-element-newline": readonly [
|
|
341
|
-
|
|
341
|
+
2,
|
|
342
342
|
{
|
|
343
343
|
readonly consistent: true;
|
|
344
344
|
readonly multiline: true;
|
|
@@ -346,44 +346,44 @@ export declare const defaults: {
|
|
|
346
346
|
}
|
|
347
347
|
];
|
|
348
348
|
readonly "@stylistic/arrow-parens": readonly [
|
|
349
|
-
|
|
349
|
+
2,
|
|
350
350
|
"as-needed"
|
|
351
351
|
];
|
|
352
|
-
readonly "@stylistic/arrow-spacing":
|
|
353
|
-
readonly "@stylistic/block-spacing":
|
|
352
|
+
readonly "@stylistic/arrow-spacing": 2;
|
|
353
|
+
readonly "@stylistic/block-spacing": 2;
|
|
354
354
|
readonly "@stylistic/brace-style": readonly [
|
|
355
|
-
|
|
355
|
+
2,
|
|
356
356
|
"stroustrup",
|
|
357
357
|
{
|
|
358
358
|
readonly allowSingleLine: true;
|
|
359
359
|
}
|
|
360
360
|
];
|
|
361
361
|
readonly "@stylistic/comma-dangle": readonly [
|
|
362
|
-
|
|
362
|
+
2,
|
|
363
363
|
"always-multiline"
|
|
364
364
|
];
|
|
365
|
-
readonly "@stylistic/comma-spacing":
|
|
366
|
-
readonly "@stylistic/comma-style":
|
|
367
|
-
readonly "@stylistic/computed-property-spacing":
|
|
368
|
-
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;
|
|
369
369
|
readonly "@stylistic/dot-location": readonly [
|
|
370
|
-
|
|
370
|
+
2,
|
|
371
371
|
"property"
|
|
372
372
|
];
|
|
373
|
-
readonly "@stylistic/eol-last":
|
|
373
|
+
readonly "@stylistic/eol-last": 2;
|
|
374
374
|
readonly "@stylistic/function-call-argument-newline": readonly [
|
|
375
|
-
|
|
375
|
+
2,
|
|
376
376
|
"consistent"
|
|
377
377
|
];
|
|
378
|
-
readonly "@stylistic/function-call-spacing":
|
|
378
|
+
readonly "@stylistic/function-call-spacing": 2;
|
|
379
379
|
readonly "@stylistic/function-paren-newline": readonly [
|
|
380
|
-
|
|
380
|
+
2,
|
|
381
381
|
"multiline-arguments"
|
|
382
382
|
];
|
|
383
|
-
readonly "@stylistic/generator-star-spacing":
|
|
384
|
-
readonly "@stylistic/implicit-arrow-linebreak":
|
|
383
|
+
readonly "@stylistic/generator-star-spacing": 2;
|
|
384
|
+
readonly "@stylistic/implicit-arrow-linebreak": 2;
|
|
385
385
|
readonly "@stylistic/indent": readonly [
|
|
386
|
-
|
|
386
|
+
2,
|
|
387
387
|
2,
|
|
388
388
|
{
|
|
389
389
|
readonly assignmentOperator: 0;
|
|
@@ -397,13 +397,13 @@ export declare const defaults: {
|
|
|
397
397
|
}
|
|
398
398
|
];
|
|
399
399
|
readonly "@stylistic/indent-binary-ops": readonly [
|
|
400
|
-
|
|
400
|
+
2,
|
|
401
401
|
2
|
|
402
402
|
];
|
|
403
|
-
readonly "@stylistic/key-spacing":
|
|
404
|
-
readonly "@stylistic/keyword-spacing":
|
|
403
|
+
readonly "@stylistic/key-spacing": 2;
|
|
404
|
+
readonly "@stylistic/keyword-spacing": 2;
|
|
405
405
|
readonly "@stylistic/lines-between-class-members": readonly [
|
|
406
|
-
|
|
406
|
+
2,
|
|
407
407
|
{
|
|
408
408
|
readonly enforce: readonly [
|
|
409
409
|
{
|
|
@@ -425,7 +425,7 @@ export declare const defaults: {
|
|
|
425
425
|
}
|
|
426
426
|
];
|
|
427
427
|
readonly "@stylistic/max-len": readonly [
|
|
428
|
-
|
|
428
|
+
2,
|
|
429
429
|
{
|
|
430
430
|
readonly code: 300;
|
|
431
431
|
readonly ignoreComments: true;
|
|
@@ -436,19 +436,19 @@ export declare const defaults: {
|
|
|
436
436
|
readonly ignoreRegExpLiterals: true;
|
|
437
437
|
}
|
|
438
438
|
];
|
|
439
|
-
readonly "@stylistic/max-statements-per-line":
|
|
440
|
-
readonly "@stylistic/member-delimiter-style":
|
|
439
|
+
readonly "@stylistic/max-statements-per-line": 2;
|
|
440
|
+
readonly "@stylistic/member-delimiter-style": 2;
|
|
441
441
|
readonly "@stylistic/multiline-ternary": readonly [
|
|
442
|
-
|
|
442
|
+
2,
|
|
443
443
|
"always-multiline"
|
|
444
444
|
];
|
|
445
|
-
readonly "@stylistic/newline-per-chained-call":
|
|
446
|
-
readonly "@stylistic/no-extra-parens":
|
|
447
|
-
readonly "@stylistic/no-extra-semi":
|
|
448
|
-
readonly "@stylistic/no-floating-decimal":
|
|
449
|
-
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;
|
|
450
450
|
readonly "@stylistic/no-multi-spaces": readonly [
|
|
451
|
-
|
|
451
|
+
2,
|
|
452
452
|
{
|
|
453
453
|
readonly exceptions: {
|
|
454
454
|
readonly Property: false;
|
|
@@ -457,22 +457,22 @@ export declare const defaults: {
|
|
|
457
457
|
}
|
|
458
458
|
];
|
|
459
459
|
readonly "@stylistic/no-multiple-empty-lines": readonly [
|
|
460
|
-
|
|
460
|
+
2,
|
|
461
461
|
{
|
|
462
462
|
readonly max: 1;
|
|
463
463
|
readonly maxBOF: 0;
|
|
464
464
|
readonly maxEOF: 0;
|
|
465
465
|
}
|
|
466
466
|
];
|
|
467
|
-
readonly "@stylistic/no-tabs":
|
|
468
|
-
readonly "@stylistic/no-trailing-spaces":
|
|
469
|
-
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;
|
|
470
470
|
readonly "@stylistic/nonblock-statement-body-position": readonly [
|
|
471
|
-
|
|
471
|
+
2,
|
|
472
472
|
"below"
|
|
473
473
|
];
|
|
474
474
|
readonly "@stylistic/object-curly-newline": readonly [
|
|
475
|
-
|
|
475
|
+
2,
|
|
476
476
|
{
|
|
477
477
|
readonly consistent: true;
|
|
478
478
|
readonly multiline: true;
|
|
@@ -480,27 +480,27 @@ export declare const defaults: {
|
|
|
480
480
|
}
|
|
481
481
|
];
|
|
482
482
|
readonly "@stylistic/object-curly-spacing": readonly [
|
|
483
|
-
|
|
483
|
+
2,
|
|
484
484
|
"always"
|
|
485
485
|
];
|
|
486
|
-
readonly "@stylistic/object-property-newline":
|
|
486
|
+
readonly "@stylistic/object-property-newline": 2;
|
|
487
487
|
readonly "@stylistic/one-var-declaration-per-line": readonly [
|
|
488
|
-
|
|
488
|
+
2,
|
|
489
489
|
"always"
|
|
490
490
|
];
|
|
491
491
|
readonly "@stylistic/operator-linebreak": readonly [
|
|
492
|
-
|
|
492
|
+
2,
|
|
493
493
|
"before"
|
|
494
494
|
];
|
|
495
495
|
readonly "@stylistic/padded-blocks": readonly [
|
|
496
|
-
|
|
496
|
+
2,
|
|
497
497
|
"never",
|
|
498
498
|
{
|
|
499
499
|
readonly allowSingleLineBlocks: true;
|
|
500
500
|
}
|
|
501
501
|
];
|
|
502
502
|
readonly "@stylistic/padding-line-between-statements": readonly [
|
|
503
|
-
|
|
503
|
+
1,
|
|
504
504
|
{
|
|
505
505
|
readonly blankLine: "never";
|
|
506
506
|
readonly prev: readonly [
|
|
@@ -685,36 +685,36 @@ export declare const defaults: {
|
|
|
685
685
|
}
|
|
686
686
|
];
|
|
687
687
|
readonly "@stylistic/quote-props": readonly [
|
|
688
|
-
|
|
688
|
+
2,
|
|
689
689
|
"as-needed",
|
|
690
690
|
{
|
|
691
691
|
readonly keywords: true;
|
|
692
692
|
}
|
|
693
693
|
];
|
|
694
694
|
readonly "@stylistic/quotes": readonly [
|
|
695
|
-
|
|
695
|
+
2,
|
|
696
696
|
"double",
|
|
697
697
|
{
|
|
698
698
|
readonly avoidEscape: true;
|
|
699
699
|
readonly allowTemplateLiterals: "always";
|
|
700
700
|
}
|
|
701
701
|
];
|
|
702
|
-
readonly "@stylistic/rest-spread-spacing":
|
|
703
|
-
readonly "@stylistic/semi":
|
|
704
|
-
readonly "@stylistic/semi-spacing":
|
|
705
|
-
readonly "@stylistic/semi-style":
|
|
706
|
-
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;
|
|
707
707
|
readonly "@stylistic/space-before-function-paren": readonly [
|
|
708
|
-
|
|
708
|
+
2,
|
|
709
709
|
{
|
|
710
710
|
readonly named: "never";
|
|
711
711
|
}
|
|
712
712
|
];
|
|
713
|
-
readonly "@stylistic/space-in-parens":
|
|
714
|
-
readonly "@stylistic/space-infix-ops":
|
|
715
|
-
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;
|
|
716
716
|
readonly "@stylistic/spaced-comment": readonly [
|
|
717
|
-
|
|
717
|
+
2,
|
|
718
718
|
"always",
|
|
719
719
|
{
|
|
720
720
|
readonly line: {
|
|
@@ -748,11 +748,11 @@ export declare const defaults: {
|
|
|
748
748
|
};
|
|
749
749
|
}
|
|
750
750
|
];
|
|
751
|
-
readonly "@stylistic/switch-colon-spacing":
|
|
752
|
-
readonly "@stylistic/template-curly-spacing":
|
|
753
|
-
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;
|
|
754
754
|
readonly "@stylistic/type-annotation-spacing": readonly [
|
|
755
|
-
|
|
755
|
+
2,
|
|
756
756
|
{
|
|
757
757
|
readonly before: true;
|
|
758
758
|
readonly after: true;
|
|
@@ -764,74 +764,74 @@ export declare const defaults: {
|
|
|
764
764
|
};
|
|
765
765
|
}
|
|
766
766
|
];
|
|
767
|
-
readonly "@stylistic/type-generic-spacing":
|
|
768
|
-
readonly "@stylistic/type-named-tuple-spacing":
|
|
767
|
+
readonly "@stylistic/type-generic-spacing": 2;
|
|
768
|
+
readonly "@stylistic/type-named-tuple-spacing": 2;
|
|
769
769
|
readonly "@stylistic/wrap-iife": readonly [
|
|
770
|
-
|
|
770
|
+
2,
|
|
771
771
|
"inside",
|
|
772
772
|
{
|
|
773
773
|
readonly functionPrototypeMethods: true;
|
|
774
774
|
}
|
|
775
775
|
];
|
|
776
|
-
readonly "@stylistic/wrap-regex":
|
|
777
|
-
readonly "@stylistic/yield-star-spacing":
|
|
776
|
+
readonly "@stylistic/wrap-regex": 2;
|
|
777
|
+
readonly "@stylistic/yield-star-spacing": 2;
|
|
778
778
|
};
|
|
779
779
|
})[];
|
|
780
780
|
ts: ({
|
|
781
781
|
id: "disable";
|
|
782
782
|
rules: {
|
|
783
|
-
readonly "consistent-return":
|
|
784
|
-
readonly "constructor-super":
|
|
785
|
-
readonly "getter-return":
|
|
786
|
-
readonly "no-class-assign":
|
|
787
|
-
readonly "no-const-assign":
|
|
788
|
-
readonly "no-dupe-args":
|
|
789
|
-
readonly "no-dupe-class-members":
|
|
790
|
-
readonly "no-dupe-keys":
|
|
791
|
-
readonly "no-func-assign":
|
|
792
|
-
readonly "no-import-assign":
|
|
793
|
-
readonly "no-invalid-this":
|
|
794
|
-
readonly "no-new-native-nonconstructor":
|
|
795
|
-
readonly "no-obj-calls":
|
|
796
|
-
readonly "no-redeclare":
|
|
797
|
-
readonly "no-setter-return":
|
|
798
|
-
readonly "no-this-before-super":
|
|
799
|
-
readonly "no-undef":
|
|
800
|
-
readonly "no-unreachable":
|
|
801
|
-
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;
|
|
802
802
|
};
|
|
803
803
|
} | {
|
|
804
804
|
id: "disable/extension";
|
|
805
805
|
rules: {
|
|
806
|
-
readonly "dot-notation":
|
|
807
|
-
readonly "no-implied-eval":
|
|
808
|
-
readonly "no-restricted-imports":
|
|
809
|
-
readonly "no-throw-literal":
|
|
810
|
-
readonly "no-unused-vars":
|
|
811
|
-
readonly "prefer-destructuring":
|
|
812
|
-
readonly "prefer-promise-reject-errors":
|
|
813
|
-
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;
|
|
814
814
|
};
|
|
815
815
|
} | {
|
|
816
816
|
id: "enable";
|
|
817
817
|
rules: {
|
|
818
|
-
readonly "@typescript-eslint/await-thenable":
|
|
819
|
-
readonly "@typescript-eslint/ban-ts-comment":
|
|
820
|
-
readonly "@typescript-eslint/ban-tslint-comment":
|
|
821
|
-
readonly "@typescript-eslint/class-literal-property-style":
|
|
822
|
-
readonly "@typescript-eslint/consistent-generic-constructors":
|
|
823
|
-
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;
|
|
824
824
|
readonly "@typescript-eslint/consistent-type-assertions": readonly [
|
|
825
|
-
|
|
825
|
+
2,
|
|
826
826
|
{
|
|
827
827
|
readonly arrayLiteralTypeAssertions: "never";
|
|
828
828
|
readonly objectLiteralTypeAssertions: "never";
|
|
829
829
|
}
|
|
830
830
|
];
|
|
831
|
-
readonly "@typescript-eslint/consistent-type-exports":
|
|
832
|
-
readonly "@typescript-eslint/consistent-type-imports":
|
|
831
|
+
readonly "@typescript-eslint/consistent-type-exports": 2;
|
|
832
|
+
readonly "@typescript-eslint/consistent-type-imports": 2;
|
|
833
833
|
readonly "@typescript-eslint/explicit-member-accessibility": readonly [
|
|
834
|
-
|
|
834
|
+
2,
|
|
835
835
|
{
|
|
836
836
|
readonly overrides: {
|
|
837
837
|
readonly constructors: "no-public";
|
|
@@ -839,114 +839,114 @@ export declare const defaults: {
|
|
|
839
839
|
}
|
|
840
840
|
];
|
|
841
841
|
readonly "@typescript-eslint/member-ordering": readonly [
|
|
842
|
-
|
|
842
|
+
2,
|
|
843
843
|
{
|
|
844
844
|
readonly default: {
|
|
845
845
|
readonly optionalityOrder: "required-first";
|
|
846
846
|
};
|
|
847
847
|
}
|
|
848
848
|
];
|
|
849
|
-
readonly "@typescript-eslint/method-signature-style":
|
|
850
|
-
readonly "@typescript-eslint/no-array-delete":
|
|
851
|
-
readonly "@typescript-eslint/no-base-to-string":
|
|
852
|
-
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;
|
|
853
853
|
readonly "@typescript-eslint/no-confusing-void-expression": readonly [
|
|
854
|
-
|
|
854
|
+
2,
|
|
855
855
|
{
|
|
856
856
|
readonly ignoreArrowShorthand: true;
|
|
857
857
|
readonly ignoreVoidOperator: true;
|
|
858
858
|
readonly ignoreVoidReturningFunctions: true;
|
|
859
859
|
}
|
|
860
860
|
];
|
|
861
|
-
readonly "@typescript-eslint/no-duplicate-enum-values":
|
|
862
|
-
readonly "@typescript-eslint/no-duplicate-type-constituents":
|
|
863
|
-
readonly "@typescript-eslint/no-dynamic-delete":
|
|
864
|
-
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;
|
|
865
865
|
readonly "@typescript-eslint/no-explicit-any": readonly [
|
|
866
|
-
|
|
866
|
+
2,
|
|
867
867
|
{
|
|
868
868
|
readonly fixToUnknown: true;
|
|
869
869
|
}
|
|
870
870
|
];
|
|
871
|
-
readonly "@typescript-eslint/no-extra-non-null-assertion":
|
|
871
|
+
readonly "@typescript-eslint/no-extra-non-null-assertion": 2;
|
|
872
872
|
readonly "@typescript-eslint/no-extraneous-class": readonly [
|
|
873
|
-
|
|
873
|
+
2,
|
|
874
874
|
{
|
|
875
875
|
readonly allowEmpty: true;
|
|
876
876
|
}
|
|
877
877
|
];
|
|
878
878
|
readonly "@typescript-eslint/no-floating-promises": readonly [
|
|
879
|
-
|
|
879
|
+
2,
|
|
880
880
|
{
|
|
881
881
|
readonly checkThenables: true;
|
|
882
882
|
}
|
|
883
883
|
];
|
|
884
|
-
readonly "@typescript-eslint/no-for-in-array":
|
|
885
|
-
readonly "@typescript-eslint/no-import-type-side-effects":
|
|
886
|
-
readonly "@typescript-eslint/no-inferrable-types":
|
|
887
|
-
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;
|
|
888
888
|
readonly "@typescript-eslint/no-meaningless-void-operator": readonly [
|
|
889
|
-
|
|
889
|
+
2,
|
|
890
890
|
{
|
|
891
891
|
readonly checkNever: true;
|
|
892
892
|
}
|
|
893
893
|
];
|
|
894
|
-
readonly "@typescript-eslint/no-misused-new":
|
|
895
|
-
readonly "@typescript-eslint/no-misused-promises":
|
|
896
|
-
readonly "@typescript-eslint/no-misused-spread":
|
|
897
|
-
readonly "@typescript-eslint/no-mixed-enums":
|
|
898
|
-
readonly "@typescript-eslint/no-non-null-asserted-nullish-coalescing":
|
|
899
|
-
readonly "@typescript-eslint/no-non-null-asserted-optional-chain":
|
|
900
|
-
readonly "@typescript-eslint/no-redundant-type-constituents":
|
|
901
|
-
readonly "@typescript-eslint/no-require-imports":
|
|
902
|
-
readonly "@typescript-eslint/no-this-alias":
|
|
903
|
-
readonly "@typescript-eslint/no-unnecessary-boolean-literal-compare":
|
|
904
|
-
readonly "@typescript-eslint/no-unnecessary-condition":
|
|
905
|
-
readonly "@typescript-eslint/no-unnecessary-parameter-property-assignment":
|
|
906
|
-
readonly "@typescript-eslint/no-unnecessary-qualifier":
|
|
907
|
-
readonly "@typescript-eslint/no-unnecessary-template-expression":
|
|
908
|
-
readonly "@typescript-eslint/no-unnecessary-type-arguments":
|
|
909
|
-
readonly "@typescript-eslint/no-unnecessary-type-assertion":
|
|
910
|
-
readonly "@typescript-eslint/no-unnecessary-type-constraint":
|
|
911
|
-
readonly "@typescript-eslint/no-unnecessary-type-conversion":
|
|
912
|
-
readonly "@typescript-eslint/no-unnecessary-type-parameters":
|
|
913
|
-
readonly "@typescript-eslint/no-unsafe-argument":
|
|
914
|
-
readonly "@typescript-eslint/no-unsafe-assignment":
|
|
915
|
-
readonly "@typescript-eslint/no-unsafe-call":
|
|
916
|
-
readonly "@typescript-eslint/no-unsafe-declaration-merging":
|
|
917
|
-
readonly "@typescript-eslint/no-unsafe-enum-comparison":
|
|
918
|
-
readonly "@typescript-eslint/no-unsafe-function-type":
|
|
919
|
-
readonly "@typescript-eslint/no-unsafe-member-access":
|
|
920
|
-
readonly "@typescript-eslint/no-unsafe-return":
|
|
921
|
-
readonly "@typescript-eslint/no-unsafe-unary-minus":
|
|
922
|
-
readonly "@typescript-eslint/no-useless-empty-export":
|
|
923
|
-
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;
|
|
924
924
|
readonly "@typescript-eslint/parameter-properties": readonly [
|
|
925
|
-
|
|
925
|
+
2,
|
|
926
926
|
{
|
|
927
927
|
readonly prefer: "parameter-property";
|
|
928
928
|
}
|
|
929
929
|
];
|
|
930
|
-
readonly "@typescript-eslint/prefer-as-const":
|
|
931
|
-
readonly "@typescript-eslint/prefer-enum-initializers":
|
|
932
|
-
readonly "@typescript-eslint/prefer-find":
|
|
933
|
-
readonly "@typescript-eslint/prefer-for-of":
|
|
934
|
-
readonly "@typescript-eslint/prefer-function-type":
|
|
935
|
-
readonly "@typescript-eslint/prefer-includes":
|
|
936
|
-
readonly "@typescript-eslint/prefer-literal-enum-member":
|
|
937
|
-
readonly "@typescript-eslint/prefer-namespace-keyword":
|
|
938
|
-
readonly "@typescript-eslint/prefer-nullish-coalescing":
|
|
939
|
-
readonly "@typescript-eslint/prefer-optional-chain":
|
|
940
|
-
readonly "@typescript-eslint/prefer-readonly":
|
|
941
|
-
readonly "@typescript-eslint/prefer-reduce-type-parameter":
|
|
942
|
-
readonly "@typescript-eslint/prefer-regexp-exec":
|
|
943
|
-
readonly "@typescript-eslint/prefer-return-this-type":
|
|
944
|
-
readonly "@typescript-eslint/prefer-string-starts-ends-with":
|
|
945
|
-
readonly "@typescript-eslint/promise-function-async":
|
|
946
|
-
readonly "@typescript-eslint/related-getter-setter-pairs":
|
|
947
|
-
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;
|
|
948
948
|
readonly "@typescript-eslint/restrict-plus-operands": readonly [
|
|
949
|
-
|
|
949
|
+
2,
|
|
950
950
|
{
|
|
951
951
|
readonly allowAny: false;
|
|
952
952
|
readonly allowBoolean: false;
|
|
@@ -956,47 +956,47 @@ export declare const defaults: {
|
|
|
956
956
|
}
|
|
957
957
|
];
|
|
958
958
|
readonly "@typescript-eslint/restrict-template-expressions": readonly [
|
|
959
|
-
|
|
959
|
+
2,
|
|
960
960
|
{
|
|
961
961
|
readonly allowNullish: false;
|
|
962
962
|
readonly allowNever: false;
|
|
963
963
|
readonly allowRegExp: false;
|
|
964
964
|
}
|
|
965
965
|
];
|
|
966
|
-
readonly "@typescript-eslint/return-await":
|
|
966
|
+
readonly "@typescript-eslint/return-await": 2;
|
|
967
967
|
readonly "@typescript-eslint/strict-boolean-expressions": readonly [
|
|
968
|
-
|
|
968
|
+
2,
|
|
969
969
|
{
|
|
970
970
|
readonly allowNullableObject: false;
|
|
971
971
|
readonly allowString: false;
|
|
972
972
|
}
|
|
973
973
|
];
|
|
974
|
-
readonly "@typescript-eslint/switch-exhaustiveness-check":
|
|
975
|
-
readonly "@typescript-eslint/unbound-method":
|
|
976
|
-
readonly "@typescript-eslint/unified-signatures":
|
|
977
|
-
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;
|
|
978
978
|
};
|
|
979
979
|
} | {
|
|
980
980
|
id: "enable/extension";
|
|
981
981
|
rules: {
|
|
982
982
|
readonly "@typescript-eslint/dot-notation": readonly [
|
|
983
|
-
|
|
983
|
+
2,
|
|
984
984
|
{
|
|
985
985
|
readonly allowPrivateClassPropertyAccess: true;
|
|
986
986
|
readonly allowProtectedClassPropertyAccess: true;
|
|
987
987
|
readonly allowIndexSignaturePropertyAccess: true;
|
|
988
988
|
}
|
|
989
989
|
];
|
|
990
|
-
readonly "@typescript-eslint/no-implied-eval":
|
|
991
|
-
readonly "@typescript-eslint/no-unused-vars":
|
|
990
|
+
readonly "@typescript-eslint/no-implied-eval": 2;
|
|
991
|
+
readonly "@typescript-eslint/no-unused-vars": 2;
|
|
992
992
|
readonly "@typescript-eslint/only-throw-error": readonly [
|
|
993
|
-
|
|
993
|
+
2,
|
|
994
994
|
{
|
|
995
995
|
readonly allowThrowingAny: false;
|
|
996
996
|
}
|
|
997
997
|
];
|
|
998
998
|
readonly "@typescript-eslint/prefer-destructuring": readonly [
|
|
999
|
-
|
|
999
|
+
2,
|
|
1000
1000
|
{
|
|
1001
1001
|
readonly AssignmentExpression: {
|
|
1002
1002
|
readonly array: false;
|
|
@@ -1005,45 +1005,45 @@ export declare const defaults: {
|
|
|
1005
1005
|
}
|
|
1006
1006
|
];
|
|
1007
1007
|
readonly "@typescript-eslint/prefer-promise-reject-errors": readonly [
|
|
1008
|
-
|
|
1008
|
+
2,
|
|
1009
1009
|
{
|
|
1010
1010
|
readonly allowThrowingUnknown: true;
|
|
1011
1011
|
}
|
|
1012
1012
|
];
|
|
1013
|
-
readonly "@typescript-eslint/require-await":
|
|
1013
|
+
readonly "@typescript-eslint/require-await": 2;
|
|
1014
1014
|
};
|
|
1015
1015
|
})[];
|
|
1016
1016
|
mocha: ({
|
|
1017
1017
|
id: "disable";
|
|
1018
1018
|
rules: {
|
|
1019
|
-
readonly "prefer-arrow-callback":
|
|
1020
|
-
readonly "no-unused-expressions":
|
|
1019
|
+
readonly "prefer-arrow-callback": 0;
|
|
1020
|
+
readonly "no-unused-expressions": 0;
|
|
1021
1021
|
};
|
|
1022
1022
|
} | {
|
|
1023
1023
|
id: "enable";
|
|
1024
1024
|
rules: {
|
|
1025
|
-
readonly "mocha/handle-done-callback":
|
|
1026
|
-
readonly "mocha/max-top-level-suites":
|
|
1027
|
-
readonly "mocha/no-async-suite":
|
|
1028
|
-
readonly "mocha/no-empty-title":
|
|
1029
|
-
readonly "mocha/no-exclusive-tests":
|
|
1030
|
-
readonly "mocha/no-exports":
|
|
1031
|
-
readonly "mocha/no-global-tests":
|
|
1032
|
-
readonly "mocha/no-identical-title":
|
|
1033
|
-
readonly "mocha/no-mocha-arrows":
|
|
1034
|
-
readonly "mocha/no-nested-tests":
|
|
1035
|
-
readonly "mocha/no-pending-tests":
|
|
1036
|
-
readonly "mocha/no-return-and-callback":
|
|
1037
|
-
readonly "mocha/no-return-from-async":
|
|
1038
|
-
readonly "mocha/no-sibling-hooks":
|
|
1039
|
-
readonly "mocha/no-top-level-hooks":
|
|
1040
|
-
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;
|
|
1041
1041
|
};
|
|
1042
1042
|
} | {
|
|
1043
1043
|
id: string;
|
|
1044
1044
|
rules: {
|
|
1045
1045
|
readonly "chai-friendly/no-unused-expressions": readonly [
|
|
1046
|
-
|
|
1046
|
+
2,
|
|
1047
1047
|
{
|
|
1048
1048
|
readonly allowShortCircuit: true;
|
|
1049
1049
|
readonly allowTernary: true;
|
|
@@ -1053,54 +1053,54 @@ export declare const defaults: {
|
|
|
1053
1053
|
} | {
|
|
1054
1054
|
id: string;
|
|
1055
1055
|
rules: {
|
|
1056
|
-
readonly "chai-expect/no-inner-compare":
|
|
1057
|
-
readonly "chai-expect/no-inner-literal":
|
|
1058
|
-
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;
|
|
1059
1059
|
};
|
|
1060
1060
|
})[];
|
|
1061
1061
|
svelte: ({
|
|
1062
1062
|
id: "disable";
|
|
1063
1063
|
rules: {
|
|
1064
|
-
readonly "no-inner-declarations":
|
|
1065
|
-
readonly "no-self-assign":
|
|
1066
|
-
readonly "no-unused-vars":
|
|
1067
|
-
readonly "@typescript-eslint/no-unused-vars":
|
|
1068
|
-
readonly "prefer-const":
|
|
1069
|
-
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;
|
|
1070
1070
|
};
|
|
1071
1071
|
} | {
|
|
1072
1072
|
id: "disable/extension";
|
|
1073
1073
|
rules: {
|
|
1074
|
-
readonly "no-inner-declarations":
|
|
1075
|
-
readonly "no-self-assign":
|
|
1076
|
-
readonly "@stylistic/no-trailing-spaces":
|
|
1074
|
+
readonly "no-inner-declarations": 0;
|
|
1075
|
+
readonly "no-self-assign": 0;
|
|
1076
|
+
readonly "@stylistic/no-trailing-spaces": 0;
|
|
1077
1077
|
};
|
|
1078
1078
|
} | {
|
|
1079
1079
|
id: "enable";
|
|
1080
1080
|
rules: {
|
|
1081
|
-
readonly "svelte/infinite-reactive-loop":
|
|
1082
|
-
readonly "svelte/no-dom-manipulating":
|
|
1083
|
-
readonly "svelte/no-dupe-else-if-blocks":
|
|
1084
|
-
readonly "svelte/no-dupe-on-directives":
|
|
1085
|
-
readonly "svelte/no-dupe-style-properties":
|
|
1086
|
-
readonly "svelte/no-dupe-use-directives":
|
|
1087
|
-
readonly "svelte/no-not-function-handler":
|
|
1088
|
-
readonly "svelte/no-object-in-text-mustaches":
|
|
1089
|
-
readonly "svelte/no-raw-special-elements":
|
|
1090
|
-
readonly "svelte/no-reactive-reassign":
|
|
1091
|
-
readonly "svelte/no-shorthand-style-property-overrides":
|
|
1092
|
-
readonly "svelte/no-store-async":
|
|
1093
|
-
readonly "svelte/no-top-level-browser-globals":
|
|
1094
|
-
readonly "svelte/no-unknown-style-directive-property":
|
|
1095
|
-
readonly "svelte/prefer-svelte-reactivity":
|
|
1096
|
-
readonly "svelte/require-store-callbacks-use-set-param":
|
|
1097
|
-
readonly "svelte/require-store-reactive-access":
|
|
1098
|
-
readonly "svelte/valid-compile":
|
|
1099
|
-
readonly "svelte/valid-style-parse":
|
|
1100
|
-
readonly "svelte/no-at-html-tags":
|
|
1101
|
-
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;
|
|
1102
1102
|
readonly "svelte/block-lang": readonly [
|
|
1103
|
-
|
|
1103
|
+
2,
|
|
1104
1104
|
{
|
|
1105
1105
|
readonly script: readonly [
|
|
1106
1106
|
"ts"
|
|
@@ -1110,60 +1110,60 @@ export declare const defaults: {
|
|
|
1110
1110
|
];
|
|
1111
1111
|
}
|
|
1112
1112
|
];
|
|
1113
|
-
readonly "svelte/button-has-type":
|
|
1114
|
-
readonly "svelte/no-add-event-listener":
|
|
1115
|
-
readonly "svelte/no-at-debug-tags":
|
|
1116
|
-
readonly "svelte/no-ignored-unsubscribe":
|
|
1117
|
-
readonly "svelte/no-immutable-reactive-statements":
|
|
1118
|
-
readonly "svelte/no-inline-styles":
|
|
1119
|
-
readonly "svelte/no-reactive-functions":
|
|
1120
|
-
readonly "svelte/no-reactive-literals":
|
|
1121
|
-
readonly "svelte/no-svelte-internal":
|
|
1122
|
-
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;
|
|
1123
1123
|
readonly "svelte/no-unused-props": readonly [
|
|
1124
|
-
|
|
1124
|
+
2,
|
|
1125
1125
|
{
|
|
1126
1126
|
readonly checkImportedTypes: true;
|
|
1127
1127
|
}
|
|
1128
1128
|
];
|
|
1129
|
-
readonly "svelte/no-unused-svelte-ignore":
|
|
1130
|
-
readonly "svelte/no-useless-children-snippet":
|
|
1131
|
-
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;
|
|
1132
1132
|
readonly "svelte/prefer-const": readonly [
|
|
1133
|
-
|
|
1133
|
+
2,
|
|
1134
1134
|
{
|
|
1135
1135
|
readonly destructuring: "all";
|
|
1136
1136
|
}
|
|
1137
1137
|
];
|
|
1138
|
-
readonly "svelte/prefer-destructured-store-props":
|
|
1139
|
-
readonly "svelte/prefer-writable-derived":
|
|
1140
|
-
readonly "svelte/require-each-key":
|
|
1141
|
-
readonly "svelte/require-event-dispatcher-types":
|
|
1142
|
-
readonly "svelte/require-optimized-style-attribute":
|
|
1143
|
-
readonly "svelte/require-stores-init":
|
|
1144
|
-
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;
|
|
1145
1145
|
readonly "svelte/consistent-selector-style": readonly [
|
|
1146
|
-
|
|
1146
|
+
2,
|
|
1147
1147
|
{
|
|
1148
1148
|
readonly checkGlobal: true;
|
|
1149
1149
|
}
|
|
1150
1150
|
];
|
|
1151
|
-
readonly "svelte/derived-has-same-inputs-outputs":
|
|
1151
|
+
readonly "svelte/derived-has-same-inputs-outputs": 2;
|
|
1152
1152
|
readonly "svelte/first-attribute-linebreak": readonly [
|
|
1153
|
-
|
|
1153
|
+
2,
|
|
1154
1154
|
{
|
|
1155
1155
|
readonly singleline: "below";
|
|
1156
1156
|
}
|
|
1157
1157
|
];
|
|
1158
|
-
readonly "svelte/html-closing-bracket-new-line":
|
|
1158
|
+
readonly "svelte/html-closing-bracket-new-line": 2;
|
|
1159
1159
|
readonly "svelte/html-closing-bracket-spacing": readonly [
|
|
1160
|
-
|
|
1160
|
+
2,
|
|
1161
1161
|
{
|
|
1162
1162
|
readonly selfClosingTag: "never";
|
|
1163
1163
|
}
|
|
1164
1164
|
];
|
|
1165
1165
|
readonly "svelte/html-quotes": readonly [
|
|
1166
|
-
|
|
1166
|
+
2,
|
|
1167
1167
|
{
|
|
1168
1168
|
readonly prefer: "double";
|
|
1169
1169
|
readonly dynamic: {
|
|
@@ -1171,82 +1171,82 @@ export declare const defaults: {
|
|
|
1171
1171
|
};
|
|
1172
1172
|
}
|
|
1173
1173
|
];
|
|
1174
|
-
readonly "svelte/html-self-closing":
|
|
1175
|
-
readonly "svelte/indent":
|
|
1176
|
-
readonly "svelte/max-attributes-per-line":
|
|
1177
|
-
readonly "svelte/mustache-spacing":
|
|
1178
|
-
readonly "svelte/no-extra-reactive-curlies":
|
|
1179
|
-
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;
|
|
1180
1180
|
readonly "svelte/prefer-class-directive": readonly [
|
|
1181
|
-
|
|
1181
|
+
2,
|
|
1182
1182
|
{
|
|
1183
1183
|
readonly prefer: "empty";
|
|
1184
1184
|
}
|
|
1185
1185
|
];
|
|
1186
|
-
readonly "svelte/prefer-style-directive":
|
|
1187
|
-
readonly "svelte/require-event-prefix":
|
|
1188
|
-
readonly "svelte/shorthand-attribute":
|
|
1189
|
-
readonly "svelte/shorthand-directive":
|
|
1190
|
-
readonly "svelte/spaced-html-comment":
|
|
1191
|
-
readonly "svelte/no-export-load-in-svelte-module-in-kit-pages":
|
|
1192
|
-
readonly "svelte/no-navigation-without-resolve":
|
|
1193
|
-
readonly "svelte/valid-prop-names-in-kit-pages":
|
|
1194
|
-
readonly "svelte/comment-directive":
|
|
1195
|
-
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;
|
|
1196
1196
|
};
|
|
1197
1197
|
} | {
|
|
1198
1198
|
id: "enable/extension";
|
|
1199
1199
|
rules: {
|
|
1200
1200
|
readonly "svelte/no-inner-declarations": readonly [
|
|
1201
|
-
|
|
1201
|
+
2,
|
|
1202
1202
|
"both"
|
|
1203
1203
|
];
|
|
1204
|
-
readonly "svelte/no-trailing-spaces":
|
|
1204
|
+
readonly "svelte/no-trailing-spaces": 2;
|
|
1205
1205
|
};
|
|
1206
1206
|
})[];
|
|
1207
1207
|
html: {
|
|
1208
1208
|
id: "enable/plugin";
|
|
1209
1209
|
rules: {
|
|
1210
|
-
readonly "@html-eslint/no-duplicate-attrs":
|
|
1211
|
-
readonly "@html-eslint/no-duplicate-class":
|
|
1212
|
-
readonly "@html-eslint/no-duplicate-id":
|
|
1213
|
-
readonly "@html-eslint/no-duplicate-in-head":
|
|
1214
|
-
readonly "@html-eslint/no-ineffective-attrs":
|
|
1215
|
-
readonly "@html-eslint/no-invalid-entity":
|
|
1216
|
-
readonly "@html-eslint/no-nested-interactive":
|
|
1217
|
-
readonly "@html-eslint/no-obsolete-tags":
|
|
1218
|
-
readonly "@html-eslint/no-target-blank":
|
|
1219
|
-
readonly "@html-eslint/require-button-type":
|
|
1220
|
-
readonly "@html-eslint/require-closing-tags":
|
|
1221
|
-
readonly "@html-eslint/require-doctype":
|
|
1222
|
-
readonly "@html-eslint/require-li-container":
|
|
1223
|
-
readonly "@html-eslint/require-meta-charset":
|
|
1224
|
-
readonly "@html-eslint/use-baseline":
|
|
1225
|
-
readonly "@html-eslint/no-multiple-h1":
|
|
1226
|
-
readonly "@html-eslint/require-lang":
|
|
1227
|
-
readonly "@html-eslint/no-abstract-roles":
|
|
1228
|
-
readonly "@html-eslint/no-accesskey-attrs":
|
|
1229
|
-
readonly "@html-eslint/no-aria-hidden-body":
|
|
1230
|
-
readonly "@html-eslint/no-aria-hidden-on-focusable":
|
|
1231
|
-
readonly "@html-eslint/no-empty-headings":
|
|
1232
|
-
readonly "@html-eslint/no-heading-inside-button":
|
|
1233
|
-
readonly "@html-eslint/no-invalid-role":
|
|
1234
|
-
readonly "@html-eslint/no-non-scalable-viewport":
|
|
1235
|
-
readonly "@html-eslint/no-positive-tabindex":
|
|
1236
|
-
readonly "@html-eslint/no-skip-heading-levels":
|
|
1237
|
-
readonly "@html-eslint/require-form-method":
|
|
1238
|
-
readonly "@html-eslint/require-frame-title":
|
|
1239
|
-
readonly "@html-eslint/require-img-alt":
|
|
1240
|
-
readonly "@html-eslint/require-input-label":
|
|
1241
|
-
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;
|
|
1242
1242
|
readonly "@html-eslint/attrs-newline": readonly [
|
|
1243
|
-
|
|
1243
|
+
2,
|
|
1244
1244
|
{
|
|
1245
1245
|
readonly ifAttrsMoreThan: 0;
|
|
1246
1246
|
}
|
|
1247
1247
|
];
|
|
1248
1248
|
readonly "@html-eslint/element-newline": readonly [
|
|
1249
|
-
|
|
1249
|
+
2,
|
|
1250
1250
|
{
|
|
1251
1251
|
readonly skip: readonly [
|
|
1252
1252
|
"head"
|
|
@@ -1257,94 +1257,94 @@ export declare const defaults: {
|
|
|
1257
1257
|
}
|
|
1258
1258
|
];
|
|
1259
1259
|
readonly "@html-eslint/indent": readonly [
|
|
1260
|
-
|
|
1260
|
+
2,
|
|
1261
1261
|
2
|
|
1262
1262
|
];
|
|
1263
|
-
readonly "@html-eslint/lowercase":
|
|
1263
|
+
readonly "@html-eslint/lowercase": 2;
|
|
1264
1264
|
readonly "@html-eslint/no-extra-spacing-attrs": readonly [
|
|
1265
|
-
|
|
1265
|
+
2,
|
|
1266
1266
|
{
|
|
1267
1267
|
readonly disallowMissing: true;
|
|
1268
1268
|
readonly disallowTabs: true;
|
|
1269
1269
|
readonly disallowInAssignment: true;
|
|
1270
1270
|
}
|
|
1271
1271
|
];
|
|
1272
|
-
readonly "@html-eslint/no-extra-spacing-text":
|
|
1272
|
+
readonly "@html-eslint/no-extra-spacing-text": 2;
|
|
1273
1273
|
readonly "@html-eslint/no-multiple-empty-lines": readonly [
|
|
1274
|
-
|
|
1274
|
+
2,
|
|
1275
1275
|
{
|
|
1276
1276
|
readonly max: 1;
|
|
1277
1277
|
}
|
|
1278
1278
|
];
|
|
1279
|
-
readonly "@html-eslint/no-trailing-spaces":
|
|
1280
|
-
readonly "@html-eslint/quotes":
|
|
1279
|
+
readonly "@html-eslint/no-trailing-spaces": 2;
|
|
1280
|
+
readonly "@html-eslint/quotes": 2;
|
|
1281
1281
|
};
|
|
1282
1282
|
}[];
|
|
1283
1283
|
css: {
|
|
1284
1284
|
id: "enable";
|
|
1285
1285
|
rules: {
|
|
1286
|
-
readonly "css/font-family-fallbacks":
|
|
1287
|
-
readonly "css/no-duplicate-imports":
|
|
1288
|
-
readonly "css/no-duplicate-keyframe-selectors":
|
|
1289
|
-
readonly "css/no-empty-blocks":
|
|
1290
|
-
readonly "css/no-important":
|
|
1291
|
-
readonly "css/no-invalid-at-rule-placement":
|
|
1292
|
-
readonly "css/no-invalid-at-rules":
|
|
1293
|
-
readonly "css/no-invalid-named-grid-areas":
|
|
1294
|
-
readonly "css/prefer-logical-properties":
|
|
1295
|
-
readonly "css/relative-font-units":
|
|
1296
|
-
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;
|
|
1297
1297
|
};
|
|
1298
1298
|
}[];
|
|
1299
1299
|
json: ({
|
|
1300
1300
|
id: "enable";
|
|
1301
1301
|
rules: {
|
|
1302
|
-
readonly "json/no-duplicate-keys":
|
|
1303
|
-
readonly "json/no-unsafe-values":
|
|
1304
|
-
readonly "json/no-unnormalized-keys":
|
|
1305
|
-
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;
|
|
1306
1306
|
};
|
|
1307
1307
|
} | {
|
|
1308
1308
|
id: "enable/plugin";
|
|
1309
1309
|
rules: {
|
|
1310
|
-
readonly "jsonc/no-bigint-literals":
|
|
1311
|
-
readonly "jsonc/no-binary-expression":
|
|
1312
|
-
readonly "jsonc/no-binary-numeric-literals":
|
|
1313
|
-
readonly "jsonc/no-comments":
|
|
1314
|
-
readonly "jsonc/no-escape-sequence-in-identifier":
|
|
1315
|
-
readonly "jsonc/no-hexadecimal-numeric-literals":
|
|
1316
|
-
readonly "jsonc/no-infinity":
|
|
1317
|
-
readonly "jsonc/no-nan":
|
|
1318
|
-
readonly "jsonc/no-number-props":
|
|
1319
|
-
readonly "jsonc/no-numeric-separators":
|
|
1320
|
-
readonly "jsonc/no-octal-numeric-literals":
|
|
1321
|
-
readonly "jsonc/no-parenthesized":
|
|
1322
|
-
readonly "jsonc/no-plus-sign":
|
|
1323
|
-
readonly "jsonc/no-regexp-literals":
|
|
1324
|
-
readonly "jsonc/no-template-literals":
|
|
1325
|
-
readonly "jsonc/no-undefined-value":
|
|
1326
|
-
readonly "jsonc/no-unicode-codepoint-escapes":
|
|
1327
|
-
readonly "jsonc/valid-json-number":
|
|
1328
|
-
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;
|
|
1329
1329
|
};
|
|
1330
1330
|
} | {
|
|
1331
1331
|
id: "enable/plugin/extension";
|
|
1332
1332
|
rules: {
|
|
1333
|
-
readonly "jsonc/array-bracket-spacing":
|
|
1333
|
+
readonly "jsonc/array-bracket-spacing": 2;
|
|
1334
1334
|
readonly "jsonc/array-element-newline": readonly [
|
|
1335
|
-
|
|
1335
|
+
2,
|
|
1336
1336
|
"consistent"
|
|
1337
1337
|
];
|
|
1338
|
-
readonly "jsonc/comma-dangle":
|
|
1339
|
-
readonly "jsonc/comma-style":
|
|
1338
|
+
readonly "jsonc/comma-dangle": 2;
|
|
1339
|
+
readonly "jsonc/comma-style": 2;
|
|
1340
1340
|
readonly "jsonc/indent": readonly [
|
|
1341
|
-
|
|
1341
|
+
2,
|
|
1342
1342
|
2
|
|
1343
1343
|
];
|
|
1344
|
-
readonly "jsonc/key-spacing":
|
|
1345
|
-
readonly "jsonc/no-floating-decimal":
|
|
1344
|
+
readonly "jsonc/key-spacing": 2;
|
|
1345
|
+
readonly "jsonc/no-floating-decimal": 2;
|
|
1346
1346
|
readonly "jsonc/no-irregular-whitespace": readonly [
|
|
1347
|
-
|
|
1347
|
+
2,
|
|
1348
1348
|
{
|
|
1349
1349
|
readonly skipStrings: true;
|
|
1350
1350
|
readonly skipComments: true;
|
|
@@ -1353,13 +1353,13 @@ export declare const defaults: {
|
|
|
1353
1353
|
readonly skipJSXText: true;
|
|
1354
1354
|
}
|
|
1355
1355
|
];
|
|
1356
|
-
readonly "jsonc/no-multi-str":
|
|
1357
|
-
readonly "jsonc/no-octal-escape":
|
|
1358
|
-
readonly "jsonc/no-octal":
|
|
1359
|
-
readonly "jsonc/no-sparse-arrays":
|
|
1360
|
-
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;
|
|
1361
1361
|
readonly "jsonc/object-curly-newline": readonly [
|
|
1362
|
-
|
|
1362
|
+
2,
|
|
1363
1363
|
{
|
|
1364
1364
|
readonly consistent: true;
|
|
1365
1365
|
readonly multiline: true;
|
|
@@ -1367,26 +1367,26 @@ export declare const defaults: {
|
|
|
1367
1367
|
}
|
|
1368
1368
|
];
|
|
1369
1369
|
readonly "jsonc/object-curly-spacing": readonly [
|
|
1370
|
-
|
|
1370
|
+
2,
|
|
1371
1371
|
"always"
|
|
1372
1372
|
];
|
|
1373
|
-
readonly "jsonc/object-property-newline":
|
|
1374
|
-
readonly "jsonc/quote-props":
|
|
1375
|
-
readonly "jsonc/quotes":
|
|
1376
|
-
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;
|
|
1377
1377
|
};
|
|
1378
1378
|
})[];
|
|
1379
1379
|
jsonc: {
|
|
1380
1380
|
id: "disable/plugin";
|
|
1381
1381
|
rules: {
|
|
1382
|
-
readonly "jsonc/no-comments":
|
|
1382
|
+
readonly "jsonc/no-comments": 0;
|
|
1383
1383
|
};
|
|
1384
1384
|
}[];
|
|
1385
1385
|
jsoncc: {
|
|
1386
1386
|
id: "disable/plugin";
|
|
1387
1387
|
rules: {
|
|
1388
1388
|
readonly "jsonc/comma-dangle": readonly [
|
|
1389
|
-
|
|
1389
|
+
2,
|
|
1390
1390
|
"always-multiline"
|
|
1391
1391
|
];
|
|
1392
1392
|
};
|
|
@@ -1394,24 +1394,23 @@ export declare const defaults: {
|
|
|
1394
1394
|
yml: ({
|
|
1395
1395
|
id: "enable/plugin";
|
|
1396
1396
|
rules: {
|
|
1397
|
-
readonly "yml/block-mapping-colon-indicator-newline":
|
|
1398
|
-
readonly "yml/block-mapping-question-indicator-newline":
|
|
1399
|
-
readonly "yml/block-mapping":
|
|
1400
|
-
readonly "yml/block-sequence-hyphen-indicator-newline":
|
|
1401
|
-
readonly "yml/block-sequence":
|
|
1402
|
-
readonly "yml/indent":
|
|
1403
|
-
readonly "yml/no-empty-key":
|
|
1404
|
-
readonly "yml/no-empty-sequence-entry":
|
|
1405
|
-
readonly "yml/no-tab-indent":
|
|
1406
|
-
readonly "yml/no-trailing-zeros":
|
|
1407
|
-
readonly "yml/require-string-key":
|
|
1408
|
-
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;
|
|
1409
1408
|
};
|
|
1410
1409
|
} | {
|
|
1411
1410
|
id: "enable/plugin/extension";
|
|
1412
1411
|
rules: {
|
|
1413
1412
|
readonly "yml/flow-mapping-curly-newline": readonly [
|
|
1414
|
-
|
|
1413
|
+
2,
|
|
1415
1414
|
{
|
|
1416
1415
|
readonly consistent: true;
|
|
1417
1416
|
readonly multiline: true;
|
|
@@ -1419,15 +1418,15 @@ export declare const defaults: {
|
|
|
1419
1418
|
}
|
|
1420
1419
|
];
|
|
1421
1420
|
readonly "yml/flow-mapping-curly-spacing": readonly [
|
|
1422
|
-
|
|
1421
|
+
2,
|
|
1423
1422
|
"always"
|
|
1424
1423
|
];
|
|
1425
|
-
readonly "yml/flow-sequence-bracket-newline":
|
|
1426
|
-
readonly "yml/flow-sequence-bracket-spacing":
|
|
1427
|
-
readonly "yml/key-spacing":
|
|
1428
|
-
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;
|
|
1429
1428
|
readonly "yml/no-multiple-empty-lines": readonly [
|
|
1430
|
-
|
|
1429
|
+
2,
|
|
1431
1430
|
{
|
|
1432
1431
|
readonly max: 1;
|
|
1433
1432
|
readonly maxBOF: 0;
|
|
@@ -1435,7 +1434,7 @@ export declare const defaults: {
|
|
|
1435
1434
|
}
|
|
1436
1435
|
];
|
|
1437
1436
|
readonly "yml/spaced-comment": readonly [
|
|
1438
|
-
|
|
1437
|
+
2,
|
|
1439
1438
|
"always",
|
|
1440
1439
|
{
|
|
1441
1440
|
readonly exceptions: readonly [
|