@eslinted/defaults 17.10.0 → 18.0.0-rc.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 +246 -265
- package/dist/index.d.ts.map +1 -1
- package/dist/rules/css/index.d.ts +9 -9
- package/dist/rules/css/index.js +9 -9
- package/dist/rules/css/index.js.map +1 -1
- package/dist/rules/html/index.d.ts +42 -42
- package/dist/rules/html/index.d.ts.map +1 -1
- package/dist/rules/html/index.js +42 -42
- package/dist/rules/html/index.js.map +1 -1
- package/dist/rules/index.d.ts +246 -265
- package/dist/rules/index.d.ts.map +1 -1
- package/dist/rules/js.d.ts +112 -119
- package/dist/rules/js.d.ts.map +1 -1
- package/dist/rules/js.eslint.d.ts +45 -52
- package/dist/rules/js.eslint.d.ts.map +1 -1
- package/dist/rules/js.eslint.js +45 -52
- package/dist/rules/js.eslint.js.map +1 -1
- package/dist/rules/js.stylistic.d.ts +67 -67
- package/dist/rules/js.stylistic.d.ts.map +1 -1
- package/dist/rules/js.stylistic.js +67 -67
- package/dist/rules/js.stylistic.js.map +1 -1
- package/dist/rules/json/index.d.ts +8 -11
- package/dist/rules/json/index.d.ts.map +1 -1
- package/dist/rules/json/plugin/extend.d.ts +8 -11
- package/dist/rules/json/plugin/extend.d.ts.map +1 -1
- package/dist/rules/json/plugin/extend.js +8 -11
- package/dist/rules/json/plugin/extend.js.map +1 -1
- package/dist/rules/jsoncc/index.d.ts +1 -1
- package/dist/rules/jsoncc/index.js +1 -1
- package/dist/rules/svelte/extend.d.ts +1 -1
- package/dist/rules/svelte/extend.js +1 -1
- package/dist/rules/svelte/extend.js.map +1 -1
- package/dist/rules/svelte/index.d.ts +24 -24
- package/dist/rules/svelte/svelte.d.ts +23 -23
- package/dist/rules/svelte/svelte.js +23 -23
- package/dist/rules/svelte/svelte.js.map +1 -1
- package/dist/rules/ts/extend.d.ts +4 -13
- package/dist/rules/ts/extend.d.ts.map +1 -1
- package/dist/rules/ts/extend.js +4 -13
- package/dist/rules/ts/extend.js.map +1 -1
- package/dist/rules/ts/index.d.ts +31 -41
- package/dist/rules/ts/index.d.ts.map +1 -1
- package/dist/rules/ts/ts.d.ts +27 -28
- package/dist/rules/ts/ts.d.ts.map +1 -1
- package/dist/rules/ts/ts.js +27 -28
- package/dist/rules/ts/ts.js.map +1 -1
- package/dist/rules/yml/extend.d.ts +7 -7
- package/dist/rules/yml/extend.js +7 -7
- package/dist/rules/yml/extend.js.map +1 -1
- package/dist/rules/yml/index.d.ts +19 -18
- package/dist/rules/yml/index.d.ts.map +1 -1
- package/dist/rules/yml/yml.d.ts +12 -11
- package/dist/rules/yml/yml.d.ts.map +1 -1
- package/dist/rules/yml/yml.js +12 -11
- package/dist/rules/yml/yml.js.map +1 -1
- package/package.json +1 -1
- package/src/rules/css/index.ts +11 -11
- package/src/rules/html/index.ts +50 -58
- package/src/rules/js.eslint.ts +143 -162
- package/src/rules/js.stylistic.ts +87 -88
- package/src/rules/json/json.ts +3 -3
- package/src/rules/json/plugin/extend.ts +11 -14
- package/src/rules/json/plugin/index.ts +3 -3
- package/src/rules/jsonc/index.ts +1 -1
- package/src/rules/jsoncc/index.ts +2 -2
- package/src/rules/svelte/disable.ts +3 -3
- package/src/rules/svelte/extend.ts +3 -3
- package/src/rules/svelte/svelte.ts +26 -26
- package/src/rules/ts/disable.ts +4 -4
- package/src/rules/ts/extend.ts +7 -15
- package/src/rules/ts/ts.ts +44 -44
- package/src/rules/yml/extend.ts +7 -7
- package/src/rules/yml/yml.ts +15 -15
package/dist/rules/index.d.ts
CHANGED
|
@@ -72,8 +72,8 @@ declare const _default: {
|
|
|
72
72
|
readonly "no-undef": import("./state.js").State.ON;
|
|
73
73
|
readonly "no-unexpected-multiline": import("./state.js").State.ON;
|
|
74
74
|
readonly "no-unmodified-loop-condition": import("./state.js").State.ON;
|
|
75
|
-
readonly "no-unreachable": import("./state.js").State.
|
|
76
|
-
readonly "no-unreachable-loop": import("./state.js").State.
|
|
75
|
+
readonly "no-unreachable": import("./state.js").State.WARN;
|
|
76
|
+
readonly "no-unreachable-loop": import("./state.js").State.WARN;
|
|
77
77
|
readonly "no-unsafe-finally": import("./state.js").State.ON;
|
|
78
78
|
readonly "no-unsafe-negation": readonly [
|
|
79
79
|
import("./state.js").State.ON,
|
|
@@ -87,8 +87,8 @@ declare const _default: {
|
|
|
87
87
|
readonly disallowArithmeticOperators: true;
|
|
88
88
|
}
|
|
89
89
|
];
|
|
90
|
-
readonly "no-unused-private-class-members": import("./state.js").State.
|
|
91
|
-
readonly "no-unused-vars": import("./state.js").State.
|
|
90
|
+
readonly "no-unused-private-class-members": import("./state.js").State.WARN;
|
|
91
|
+
readonly "no-unused-vars": import("./state.js").State.WARN;
|
|
92
92
|
readonly "no-use-before-define": readonly [
|
|
93
93
|
import("./state.js").State.ON,
|
|
94
94
|
{
|
|
@@ -116,21 +116,21 @@ declare const _default: {
|
|
|
116
116
|
readonly enforceForTSTypes: true;
|
|
117
117
|
}
|
|
118
118
|
];
|
|
119
|
-
readonly "arrow-body-style": import("./state.js").State.
|
|
119
|
+
readonly "arrow-body-style": import("./state.js").State.WARN;
|
|
120
120
|
readonly "block-scoped-var": import("./state.js").State.ON;
|
|
121
121
|
readonly "consistent-return": import("./state.js").State.ON;
|
|
122
122
|
readonly "consistent-this": import("./state.js").State.ON;
|
|
123
123
|
readonly curly: readonly [
|
|
124
|
-
import("./state.js").State.
|
|
124
|
+
import("./state.js").State.WARN,
|
|
125
125
|
"multi"
|
|
126
126
|
];
|
|
127
127
|
readonly "default-case-last": import("./state.js").State.ON;
|
|
128
128
|
readonly "default-param-last": import("./state.js").State.ON;
|
|
129
|
-
readonly "dot-notation": import("./state.js").State.
|
|
129
|
+
readonly "dot-notation": import("./state.js").State.WARN;
|
|
130
130
|
readonly eqeqeq: import("./state.js").State.ON;
|
|
131
|
-
readonly "init-declarations": import("./state.js").State.
|
|
131
|
+
readonly "init-declarations": import("./state.js").State.WARN;
|
|
132
132
|
readonly "logical-assignment-operators": readonly [
|
|
133
|
-
import("./state.js").State.
|
|
133
|
+
import("./state.js").State.WARN,
|
|
134
134
|
"always",
|
|
135
135
|
{
|
|
136
136
|
readonly enforceForIfStatements: true;
|
|
@@ -144,9 +144,10 @@ declare const _default: {
|
|
|
144
144
|
readonly "no-continue": import("./state.js").State.ON;
|
|
145
145
|
readonly "no-delete-var": import("./state.js").State.ON;
|
|
146
146
|
readonly "no-div-regex": import("./state.js").State.ON;
|
|
147
|
+
readonly "no-else-return": import("./state.js").State.ON;
|
|
147
148
|
readonly "no-empty": import("./state.js").State.ON;
|
|
148
149
|
readonly "no-empty-function": readonly [
|
|
149
|
-
import("./state.js").State.
|
|
150
|
+
import("./state.js").State.WARN,
|
|
150
151
|
{
|
|
151
152
|
readonly allow: readonly [
|
|
152
153
|
"constructors",
|
|
@@ -157,18 +158,18 @@ declare const _default: {
|
|
|
157
158
|
];
|
|
158
159
|
}
|
|
159
160
|
];
|
|
160
|
-
readonly "no-empty-static-block": import("./state.js").State.
|
|
161
|
+
readonly "no-empty-static-block": import("./state.js").State.WARN;
|
|
161
162
|
readonly "no-eq-null": import("./state.js").State.ON;
|
|
162
163
|
readonly "no-eval": import("./state.js").State.ON;
|
|
163
164
|
readonly "no-extend-native": import("./state.js").State.ON;
|
|
164
165
|
readonly "no-extra-bind": import("./state.js").State.ON;
|
|
165
166
|
readonly "no-extra-boolean-cast": readonly [
|
|
166
|
-
import("./state.js").State.
|
|
167
|
+
import("./state.js").State.WARN,
|
|
167
168
|
{
|
|
168
169
|
readonly enforceForLogicalOperands: true;
|
|
169
170
|
}
|
|
170
171
|
];
|
|
171
|
-
readonly "no-extra-label": import("./state.js").State.
|
|
172
|
+
readonly "no-extra-label": import("./state.js").State.WARN;
|
|
172
173
|
readonly "no-global-assign": import("./state.js").State.ON;
|
|
173
174
|
readonly "no-implicit-coercion": import("./state.js").State.ON;
|
|
174
175
|
readonly "no-implied-eval": import("./state.js").State.ON;
|
|
@@ -179,11 +180,11 @@ declare const _default: {
|
|
|
179
180
|
}
|
|
180
181
|
];
|
|
181
182
|
readonly "no-iterator": import("./state.js").State.ON;
|
|
182
|
-
readonly "no-label-var": import("./state.js").State.
|
|
183
|
+
readonly "no-label-var": import("./state.js").State.WARN;
|
|
183
184
|
readonly "no-lone-blocks": import("./state.js").State.ON;
|
|
184
185
|
readonly "no-loop-func": import("./state.js").State.ON;
|
|
185
186
|
readonly "no-multi-assign": import("./state.js").State.ON;
|
|
186
|
-
readonly "no-multi-str": import("./state.js").State.
|
|
187
|
+
readonly "no-multi-str": import("./state.js").State.WARN;
|
|
187
188
|
readonly "no-new": import("./state.js").State.ON;
|
|
188
189
|
readonly "no-new-func": import("./state.js").State.ON;
|
|
189
190
|
readonly "no-new-wrappers": import("./state.js").State.ON;
|
|
@@ -202,33 +203,33 @@ declare const _default: {
|
|
|
202
203
|
readonly "no-script-url": import("./state.js").State.ON;
|
|
203
204
|
readonly "no-sequences": import("./state.js").State.ON;
|
|
204
205
|
readonly "no-shadow-restricted-names": import("./state.js").State.ON;
|
|
205
|
-
readonly "no-throw-literal": import("./state.js").State.
|
|
206
|
+
readonly "no-throw-literal": import("./state.js").State.WARN;
|
|
206
207
|
readonly "no-undef-init": import("./state.js").State.ON;
|
|
207
|
-
readonly "no-unneeded-ternary": import("./state.js").State.
|
|
208
|
+
readonly "no-unneeded-ternary": import("./state.js").State.WARN;
|
|
208
209
|
readonly "no-unused-expressions": readonly [
|
|
209
|
-
import("./state.js").State.
|
|
210
|
+
import("./state.js").State.WARN,
|
|
210
211
|
{
|
|
211
212
|
readonly allowShortCircuit: true;
|
|
212
213
|
readonly allowTernary: true;
|
|
213
214
|
}
|
|
214
215
|
];
|
|
215
|
-
readonly "no-unused-labels": import("./state.js").State.
|
|
216
|
-
readonly "no-useless-call": import("./state.js").State.
|
|
217
|
-
readonly "no-useless-catch": import("./state.js").State.
|
|
218
|
-
readonly "no-useless-computed-key": import("./state.js").State.
|
|
219
|
-
readonly "no-useless-concat": import("./state.js").State.
|
|
220
|
-
readonly "no-useless-constructor": import("./state.js").State.
|
|
216
|
+
readonly "no-unused-labels": import("./state.js").State.WARN;
|
|
217
|
+
readonly "no-useless-call": import("./state.js").State.WARN;
|
|
218
|
+
readonly "no-useless-catch": import("./state.js").State.WARN;
|
|
219
|
+
readonly "no-useless-computed-key": import("./state.js").State.WARN;
|
|
220
|
+
readonly "no-useless-concat": import("./state.js").State.WARN;
|
|
221
|
+
readonly "no-useless-constructor": import("./state.js").State.WARN;
|
|
221
222
|
readonly "no-useless-escape": readonly [
|
|
222
|
-
import("./state.js").State.
|
|
223
|
+
import("./state.js").State.WARN,
|
|
223
224
|
{
|
|
224
225
|
readonly allowRegexCharacters: readonly [
|
|
225
226
|
"-"
|
|
226
227
|
];
|
|
227
228
|
}
|
|
228
229
|
];
|
|
229
|
-
readonly "no-useless-rename": import("./state.js").State.
|
|
230
|
-
readonly "no-useless-return": import("./state.js").State.
|
|
231
|
-
readonly "no-var": import("./state.js").State.
|
|
230
|
+
readonly "no-useless-rename": import("./state.js").State.WARN;
|
|
231
|
+
readonly "no-useless-return": import("./state.js").State.WARN;
|
|
232
|
+
readonly "no-var": import("./state.js").State.WARN;
|
|
232
233
|
readonly "no-void": readonly [
|
|
233
234
|
import("./state.js").State.ON,
|
|
234
235
|
{
|
|
@@ -236,9 +237,9 @@ declare const _default: {
|
|
|
236
237
|
}
|
|
237
238
|
];
|
|
238
239
|
readonly "no-with": import("./state.js").State.ON;
|
|
239
|
-
readonly "object-shorthand": import("./state.js").State.
|
|
240
|
+
readonly "object-shorthand": import("./state.js").State.WARN;
|
|
240
241
|
readonly "one-var": readonly [
|
|
241
|
-
import("./state.js").State.
|
|
242
|
+
import("./state.js").State.WARN,
|
|
242
243
|
{
|
|
243
244
|
readonly var: "consecutive";
|
|
244
245
|
readonly let: "consecutive";
|
|
@@ -248,36 +249,27 @@ declare const _default: {
|
|
|
248
249
|
readonly separateRequires: true;
|
|
249
250
|
}
|
|
250
251
|
];
|
|
251
|
-
readonly "operator-assignment": import("./state.js").State.
|
|
252
|
-
readonly "prefer-arrow-callback": import("./state.js").State.
|
|
252
|
+
readonly "operator-assignment": import("./state.js").State.WARN;
|
|
253
|
+
readonly "prefer-arrow-callback": import("./state.js").State.WARN;
|
|
253
254
|
readonly "prefer-const": readonly [
|
|
254
|
-
import("./state.js").State.
|
|
255
|
+
import("./state.js").State.WARN,
|
|
255
256
|
{
|
|
256
257
|
readonly destructuring: "all";
|
|
257
258
|
}
|
|
258
259
|
];
|
|
259
|
-
readonly "prefer-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
readonly object: false;
|
|
265
|
-
};
|
|
266
|
-
}
|
|
267
|
-
];
|
|
268
|
-
readonly "prefer-exponentiation-operator": import("./state.js").State.ON;
|
|
269
|
-
readonly "prefer-numeric-literals": import("./state.js").State.ON;
|
|
270
|
-
readonly "prefer-object-has-own": import("./state.js").State.ON;
|
|
271
|
-
readonly "prefer-object-spread": import("./state.js").State.ON;
|
|
272
|
-
readonly "prefer-promise-reject-errors": import("./state.js").State.ON;
|
|
260
|
+
readonly "prefer-exponentiation-operator": import("./state.js").State.WARN;
|
|
261
|
+
readonly "prefer-numeric-literals": import("./state.js").State.WARN;
|
|
262
|
+
readonly "prefer-object-has-own": import("./state.js").State.WARN;
|
|
263
|
+
readonly "prefer-object-spread": import("./state.js").State.WARN;
|
|
264
|
+
readonly "prefer-promise-reject-errors": import("./state.js").State.WARN;
|
|
273
265
|
readonly "prefer-regex-literals": readonly [
|
|
274
|
-
import("./state.js").State.
|
|
266
|
+
import("./state.js").State.WARN,
|
|
275
267
|
{
|
|
276
268
|
readonly disallowRedundantWrapping: true;
|
|
277
269
|
}
|
|
278
270
|
];
|
|
279
|
-
readonly "prefer-rest-params": import("./state.js").State.
|
|
280
|
-
readonly "prefer-spread": import("./state.js").State.
|
|
271
|
+
readonly "prefer-rest-params": import("./state.js").State.WARN;
|
|
272
|
+
readonly "prefer-spread": import("./state.js").State.WARN;
|
|
281
273
|
readonly "preserve-caught-error": readonly [
|
|
282
274
|
import("./state.js").State.ON,
|
|
283
275
|
{
|
|
@@ -291,15 +283,16 @@ declare const _default: {
|
|
|
291
283
|
readonly "require-await": import("./state.js").State.ON;
|
|
292
284
|
readonly "require-unicode-regexp": import("./state.js").State.ON;
|
|
293
285
|
readonly "require-yield": import("./state.js").State.ON;
|
|
294
|
-
readonly "vars-on-top": import("./state.js").State.
|
|
295
|
-
readonly yoda: import("./state.js").State.
|
|
286
|
+
readonly "vars-on-top": import("./state.js").State.WARN;
|
|
287
|
+
readonly yoda: import("./state.js").State.WARN;
|
|
288
|
+
readonly "unicode-bom": import("./state.js").State.WARN;
|
|
296
289
|
};
|
|
297
290
|
} | {
|
|
298
291
|
rules: {
|
|
299
|
-
readonly "stylistic/array-bracket-newline": import("./state.js").State.
|
|
300
|
-
readonly "stylistic/array-bracket-spacing": import("./state.js").State.
|
|
292
|
+
readonly "stylistic/array-bracket-newline": import("./state.js").State.WARN;
|
|
293
|
+
readonly "stylistic/array-bracket-spacing": import("./state.js").State.WARN;
|
|
301
294
|
readonly "stylistic/array-element-newline": readonly [
|
|
302
|
-
import("./state.js").State.
|
|
295
|
+
import("./state.js").State.WARN,
|
|
303
296
|
{
|
|
304
297
|
readonly consistent: true;
|
|
305
298
|
readonly multiline: true;
|
|
@@ -307,44 +300,44 @@ declare const _default: {
|
|
|
307
300
|
}
|
|
308
301
|
];
|
|
309
302
|
readonly "stylistic/arrow-parens": readonly [
|
|
310
|
-
import("./state.js").State.
|
|
303
|
+
import("./state.js").State.WARN,
|
|
311
304
|
"as-needed"
|
|
312
305
|
];
|
|
313
|
-
readonly "stylistic/arrow-spacing": import("./state.js").State.
|
|
314
|
-
readonly "stylistic/block-spacing": import("./state.js").State.
|
|
306
|
+
readonly "stylistic/arrow-spacing": import("./state.js").State.WARN;
|
|
307
|
+
readonly "stylistic/block-spacing": import("./state.js").State.WARN;
|
|
315
308
|
readonly "stylistic/brace-style": readonly [
|
|
316
|
-
import("./state.js").State.
|
|
309
|
+
import("./state.js").State.WARN,
|
|
317
310
|
"stroustrup",
|
|
318
311
|
{
|
|
319
312
|
readonly allowSingleLine: true;
|
|
320
313
|
}
|
|
321
314
|
];
|
|
322
315
|
readonly "stylistic/comma-dangle": readonly [
|
|
323
|
-
import("./state.js").State.
|
|
316
|
+
import("./state.js").State.WARN,
|
|
324
317
|
"always-multiline"
|
|
325
318
|
];
|
|
326
|
-
readonly "stylistic/comma-spacing": import("./state.js").State.
|
|
327
|
-
readonly "stylistic/comma-style": import("./state.js").State.
|
|
328
|
-
readonly "stylistic/computed-property-spacing": import("./state.js").State.
|
|
329
|
-
readonly "stylistic/curly-newline": import("./state.js").State.
|
|
319
|
+
readonly "stylistic/comma-spacing": import("./state.js").State.WARN;
|
|
320
|
+
readonly "stylistic/comma-style": import("./state.js").State.WARN;
|
|
321
|
+
readonly "stylistic/computed-property-spacing": import("./state.js").State.WARN;
|
|
322
|
+
readonly "stylistic/curly-newline": import("./state.js").State.WARN;
|
|
330
323
|
readonly "stylistic/dot-location": readonly [
|
|
331
|
-
import("./state.js").State.
|
|
324
|
+
import("./state.js").State.WARN,
|
|
332
325
|
"property"
|
|
333
326
|
];
|
|
334
|
-
readonly "stylistic/eol-last": import("./state.js").State.
|
|
327
|
+
readonly "stylistic/eol-last": import("./state.js").State.WARN;
|
|
335
328
|
readonly "stylistic/function-call-argument-newline": readonly [
|
|
336
|
-
import("./state.js").State.
|
|
329
|
+
import("./state.js").State.WARN,
|
|
337
330
|
"consistent"
|
|
338
331
|
];
|
|
339
|
-
readonly "stylistic/function-call-spacing": import("./state.js").State.
|
|
332
|
+
readonly "stylistic/function-call-spacing": import("./state.js").State.WARN;
|
|
340
333
|
readonly "stylistic/function-paren-newline": readonly [
|
|
341
|
-
import("./state.js").State.
|
|
334
|
+
import("./state.js").State.WARN,
|
|
342
335
|
"multiline-arguments"
|
|
343
336
|
];
|
|
344
|
-
readonly "stylistic/generator-star-spacing": import("./state.js").State.
|
|
345
|
-
readonly "stylistic/implicit-arrow-linebreak": import("./state.js").State.
|
|
337
|
+
readonly "stylistic/generator-star-spacing": import("./state.js").State.WARN;
|
|
338
|
+
readonly "stylistic/implicit-arrow-linebreak": import("./state.js").State.WARN;
|
|
346
339
|
readonly "stylistic/indent": readonly [
|
|
347
|
-
import("./state.js").State.
|
|
340
|
+
import("./state.js").State.WARN,
|
|
348
341
|
2,
|
|
349
342
|
{
|
|
350
343
|
readonly assignmentOperator: 0;
|
|
@@ -358,14 +351,14 @@ declare const _default: {
|
|
|
358
351
|
}
|
|
359
352
|
];
|
|
360
353
|
readonly "stylistic/indent-binary-ops": readonly [
|
|
361
|
-
import("./state.js").State.
|
|
354
|
+
import("./state.js").State.WARN,
|
|
362
355
|
2
|
|
363
356
|
];
|
|
364
|
-
readonly "stylistic/key-spacing": import("./state.js").State.
|
|
365
|
-
readonly "stylistic/keyword-spacing": import("./state.js").State.
|
|
366
|
-
readonly "stylistic/linebreak-style": import("./state.js").State.
|
|
357
|
+
readonly "stylistic/key-spacing": import("./state.js").State.WARN;
|
|
358
|
+
readonly "stylistic/keyword-spacing": import("./state.js").State.WARN;
|
|
359
|
+
readonly "stylistic/linebreak-style": import("./state.js").State.WARN;
|
|
367
360
|
readonly "stylistic/lines-between-class-members": readonly [
|
|
368
|
-
import("./state.js").State.
|
|
361
|
+
import("./state.js").State.WARN,
|
|
369
362
|
{
|
|
370
363
|
readonly enforce: readonly [
|
|
371
364
|
{
|
|
@@ -387,7 +380,7 @@ declare const _default: {
|
|
|
387
380
|
}
|
|
388
381
|
];
|
|
389
382
|
readonly "stylistic/max-len": readonly [
|
|
390
|
-
import("./state.js").State.
|
|
383
|
+
import("./state.js").State.WARN,
|
|
391
384
|
{
|
|
392
385
|
readonly code: 300;
|
|
393
386
|
readonly ignoreComments: true;
|
|
@@ -398,19 +391,19 @@ declare const _default: {
|
|
|
398
391
|
readonly ignoreRegExpLiterals: true;
|
|
399
392
|
}
|
|
400
393
|
];
|
|
401
|
-
readonly "stylistic/max-statements-per-line": import("./state.js").State.
|
|
402
|
-
readonly "stylistic/member-delimiter-style": import("./state.js").State.
|
|
394
|
+
readonly "stylistic/max-statements-per-line": import("./state.js").State.WARN;
|
|
395
|
+
readonly "stylistic/member-delimiter-style": import("./state.js").State.WARN;
|
|
403
396
|
readonly "stylistic/multiline-ternary": readonly [
|
|
404
|
-
import("./state.js").State.
|
|
397
|
+
import("./state.js").State.WARN,
|
|
405
398
|
"always-multiline"
|
|
406
399
|
];
|
|
407
|
-
readonly "stylistic/newline-per-chained-call": import("./state.js").State.
|
|
408
|
-
readonly "stylistic/no-extra-parens": import("./state.js").State.
|
|
409
|
-
readonly "stylistic/no-extra-semi": import("./state.js").State.
|
|
410
|
-
readonly "stylistic/no-floating-decimal": import("./state.js").State.
|
|
411
|
-
readonly "stylistic/no-mixed-spaces-and-tabs": import("./state.js").State.
|
|
400
|
+
readonly "stylistic/newline-per-chained-call": import("./state.js").State.WARN;
|
|
401
|
+
readonly "stylistic/no-extra-parens": import("./state.js").State.WARN;
|
|
402
|
+
readonly "stylistic/no-extra-semi": import("./state.js").State.WARN;
|
|
403
|
+
readonly "stylistic/no-floating-decimal": import("./state.js").State.WARN;
|
|
404
|
+
readonly "stylistic/no-mixed-spaces-and-tabs": import("./state.js").State.WARN;
|
|
412
405
|
readonly "stylistic/no-multi-spaces": readonly [
|
|
413
|
-
import("./state.js").State.
|
|
406
|
+
import("./state.js").State.WARN,
|
|
414
407
|
{
|
|
415
408
|
readonly exceptions: {
|
|
416
409
|
readonly Property: false;
|
|
@@ -419,22 +412,22 @@ declare const _default: {
|
|
|
419
412
|
}
|
|
420
413
|
];
|
|
421
414
|
readonly "stylistic/no-multiple-empty-lines": readonly [
|
|
422
|
-
import("./state.js").State.
|
|
415
|
+
import("./state.js").State.WARN,
|
|
423
416
|
{
|
|
424
417
|
readonly max: 1;
|
|
425
418
|
readonly maxBOF: 0;
|
|
426
419
|
readonly maxEOF: 0;
|
|
427
420
|
}
|
|
428
421
|
];
|
|
429
|
-
readonly "stylistic/no-tabs": import("./state.js").State.
|
|
430
|
-
readonly "stylistic/no-trailing-spaces": import("./state.js").State.
|
|
431
|
-
readonly "stylistic/no-whitespace-before-property": import("./state.js").State.
|
|
422
|
+
readonly "stylistic/no-tabs": import("./state.js").State.WARN;
|
|
423
|
+
readonly "stylistic/no-trailing-spaces": import("./state.js").State.WARN;
|
|
424
|
+
readonly "stylistic/no-whitespace-before-property": import("./state.js").State.WARN;
|
|
432
425
|
readonly "stylistic/nonblock-statement-body-position": readonly [
|
|
433
|
-
import("./state.js").State.
|
|
426
|
+
import("./state.js").State.WARN,
|
|
434
427
|
"below"
|
|
435
428
|
];
|
|
436
429
|
readonly "stylistic/object-curly-newline": readonly [
|
|
437
|
-
import("./state.js").State.
|
|
430
|
+
import("./state.js").State.WARN,
|
|
438
431
|
{
|
|
439
432
|
readonly consistent: true;
|
|
440
433
|
readonly multiline: true;
|
|
@@ -442,59 +435,59 @@ declare const _default: {
|
|
|
442
435
|
}
|
|
443
436
|
];
|
|
444
437
|
readonly "stylistic/object-curly-spacing": readonly [
|
|
445
|
-
import("./state.js").State.
|
|
438
|
+
import("./state.js").State.WARN,
|
|
446
439
|
"always",
|
|
447
440
|
{
|
|
448
441
|
readonly emptyObjects: "never";
|
|
449
442
|
}
|
|
450
443
|
];
|
|
451
|
-
readonly "stylistic/object-property-newline": import("./state.js").State.
|
|
444
|
+
readonly "stylistic/object-property-newline": import("./state.js").State.WARN;
|
|
452
445
|
readonly "stylistic/one-var-declaration-per-line": readonly [
|
|
453
|
-
import("./state.js").State.
|
|
446
|
+
import("./state.js").State.WARN,
|
|
454
447
|
"always"
|
|
455
448
|
];
|
|
456
449
|
readonly "stylistic/operator-linebreak": readonly [
|
|
457
|
-
import("./state.js").State.
|
|
450
|
+
import("./state.js").State.WARN,
|
|
458
451
|
"before"
|
|
459
452
|
];
|
|
460
453
|
readonly "stylistic/padded-blocks": readonly [
|
|
461
|
-
import("./state.js").State.
|
|
454
|
+
import("./state.js").State.WARN,
|
|
462
455
|
"never",
|
|
463
456
|
{
|
|
464
457
|
readonly allowSingleLineBlocks: true;
|
|
465
458
|
}
|
|
466
459
|
];
|
|
467
460
|
readonly "stylistic/quote-props": readonly [
|
|
468
|
-
import("./state.js").State.
|
|
461
|
+
import("./state.js").State.WARN,
|
|
469
462
|
"as-needed",
|
|
470
463
|
{
|
|
471
464
|
readonly keywords: true;
|
|
472
465
|
}
|
|
473
466
|
];
|
|
474
467
|
readonly "stylistic/quotes": readonly [
|
|
475
|
-
import("./state.js").State.
|
|
468
|
+
import("./state.js").State.WARN,
|
|
476
469
|
"double",
|
|
477
470
|
{
|
|
478
471
|
readonly avoidEscape: true;
|
|
479
472
|
readonly allowTemplateLiterals: "always";
|
|
480
473
|
}
|
|
481
474
|
];
|
|
482
|
-
readonly "stylistic/rest-spread-spacing": import("./state.js").State.
|
|
483
|
-
readonly "stylistic/semi": import("./state.js").State.
|
|
484
|
-
readonly "stylistic/semi-spacing": import("./state.js").State.
|
|
485
|
-
readonly "stylistic/semi-style": import("./state.js").State.
|
|
486
|
-
readonly "stylistic/space-before-blocks": import("./state.js").State.
|
|
475
|
+
readonly "stylistic/rest-spread-spacing": import("./state.js").State.WARN;
|
|
476
|
+
readonly "stylistic/semi": import("./state.js").State.WARN;
|
|
477
|
+
readonly "stylistic/semi-spacing": import("./state.js").State.WARN;
|
|
478
|
+
readonly "stylistic/semi-style": import("./state.js").State.WARN;
|
|
479
|
+
readonly "stylistic/space-before-blocks": import("./state.js").State.WARN;
|
|
487
480
|
readonly "stylistic/space-before-function-paren": readonly [
|
|
488
|
-
import("./state.js").State.
|
|
481
|
+
import("./state.js").State.WARN,
|
|
489
482
|
{
|
|
490
483
|
readonly named: "never";
|
|
491
484
|
}
|
|
492
485
|
];
|
|
493
|
-
readonly "stylistic/space-in-parens": import("./state.js").State.
|
|
494
|
-
readonly "stylistic/space-infix-ops": import("./state.js").State.
|
|
495
|
-
readonly "stylistic/space-unary-ops": import("./state.js").State.
|
|
486
|
+
readonly "stylistic/space-in-parens": import("./state.js").State.WARN;
|
|
487
|
+
readonly "stylistic/space-infix-ops": import("./state.js").State.WARN;
|
|
488
|
+
readonly "stylistic/space-unary-ops": import("./state.js").State.WARN;
|
|
496
489
|
readonly "stylistic/spaced-comment": readonly [
|
|
497
|
-
import("./state.js").State.
|
|
490
|
+
import("./state.js").State.WARN,
|
|
498
491
|
"always",
|
|
499
492
|
{
|
|
500
493
|
readonly line: {
|
|
@@ -528,11 +521,11 @@ declare const _default: {
|
|
|
528
521
|
};
|
|
529
522
|
}
|
|
530
523
|
];
|
|
531
|
-
readonly "stylistic/switch-colon-spacing": import("./state.js").State.
|
|
532
|
-
readonly "stylistic/template-curly-spacing": import("./state.js").State.
|
|
533
|
-
readonly "stylistic/template-tag-spacing": import("./state.js").State.
|
|
524
|
+
readonly "stylistic/switch-colon-spacing": import("./state.js").State.WARN;
|
|
525
|
+
readonly "stylistic/template-curly-spacing": import("./state.js").State.WARN;
|
|
526
|
+
readonly "stylistic/template-tag-spacing": import("./state.js").State.WARN;
|
|
534
527
|
readonly "stylistic/type-annotation-spacing": readonly [
|
|
535
|
-
import("./state.js").State.
|
|
528
|
+
import("./state.js").State.WARN,
|
|
536
529
|
{
|
|
537
530
|
readonly before: true;
|
|
538
531
|
readonly after: true;
|
|
@@ -544,17 +537,17 @@ declare const _default: {
|
|
|
544
537
|
};
|
|
545
538
|
}
|
|
546
539
|
];
|
|
547
|
-
readonly "stylistic/type-generic-spacing": import("./state.js").State.
|
|
548
|
-
readonly "stylistic/type-named-tuple-spacing": import("./state.js").State.
|
|
540
|
+
readonly "stylistic/type-generic-spacing": import("./state.js").State.WARN;
|
|
541
|
+
readonly "stylistic/type-named-tuple-spacing": import("./state.js").State.WARN;
|
|
549
542
|
readonly "stylistic/wrap-iife": readonly [
|
|
550
|
-
import("./state.js").State.
|
|
543
|
+
import("./state.js").State.WARN,
|
|
551
544
|
"inside",
|
|
552
545
|
{
|
|
553
546
|
readonly functionPrototypeMethods: true;
|
|
554
547
|
}
|
|
555
548
|
];
|
|
556
|
-
readonly "stylistic/wrap-regex": import("./state.js").State.
|
|
557
|
-
readonly "stylistic/yield-star-spacing": import("./state.js").State.
|
|
549
|
+
readonly "stylistic/wrap-regex": import("./state.js").State.WARN;
|
|
550
|
+
readonly "stylistic/yield-star-spacing": import("./state.js").State.WARN;
|
|
558
551
|
};
|
|
559
552
|
})[];
|
|
560
553
|
ts: ({
|
|
@@ -582,21 +575,21 @@ declare const _default: {
|
|
|
582
575
|
} | {
|
|
583
576
|
rules: {
|
|
584
577
|
readonly "ts/await-thenable": import("./state.js").State.ON;
|
|
585
|
-
readonly "ts/ban-ts-comment": import("./state.js").State.
|
|
586
|
-
readonly "ts/ban-tslint-comment": import("./state.js").State.
|
|
587
|
-
readonly "ts/class-literal-property-style": import("./state.js").State.
|
|
588
|
-
readonly "ts/consistent-generic-constructors": import("./state.js").State.
|
|
578
|
+
readonly "ts/ban-ts-comment": import("./state.js").State.WARN;
|
|
579
|
+
readonly "ts/ban-tslint-comment": import("./state.js").State.WARN;
|
|
580
|
+
readonly "ts/class-literal-property-style": import("./state.js").State.WARN;
|
|
581
|
+
readonly "ts/consistent-generic-constructors": import("./state.js").State.WARN;
|
|
589
582
|
readonly "ts/consistent-type-assertions": readonly [
|
|
590
|
-
import("./state.js").State.
|
|
583
|
+
import("./state.js").State.WARN,
|
|
591
584
|
{
|
|
592
585
|
readonly arrayLiteralTypeAssertions: "never";
|
|
593
586
|
readonly objectLiteralTypeAssertions: "never";
|
|
594
587
|
}
|
|
595
588
|
];
|
|
596
|
-
readonly "ts/consistent-type-exports": import("./state.js").State.
|
|
597
|
-
readonly "ts/consistent-type-imports": import("./state.js").State.
|
|
589
|
+
readonly "ts/consistent-type-exports": import("./state.js").State.WARN;
|
|
590
|
+
readonly "ts/consistent-type-imports": import("./state.js").State.WARN;
|
|
598
591
|
readonly "ts/explicit-member-accessibility": readonly [
|
|
599
|
-
import("./state.js").State.
|
|
592
|
+
import("./state.js").State.WARN,
|
|
600
593
|
{
|
|
601
594
|
readonly overrides: {
|
|
602
595
|
readonly constructors: "no-public";
|
|
@@ -604,14 +597,14 @@ declare const _default: {
|
|
|
604
597
|
}
|
|
605
598
|
];
|
|
606
599
|
readonly "ts/member-ordering": readonly [
|
|
607
|
-
import("./state.js").State.
|
|
600
|
+
import("./state.js").State.WARN,
|
|
608
601
|
{
|
|
609
602
|
readonly default: {
|
|
610
603
|
readonly optionalityOrder: "required-first";
|
|
611
604
|
};
|
|
612
605
|
}
|
|
613
606
|
];
|
|
614
|
-
readonly "ts/method-signature-style": import("./state.js").State.
|
|
607
|
+
readonly "ts/method-signature-style": import("./state.js").State.WARN;
|
|
615
608
|
readonly "ts/no-array-delete": import("./state.js").State.ON;
|
|
616
609
|
readonly "ts/no-base-to-string": import("./state.js").State.ON;
|
|
617
610
|
readonly "ts/no-confusing-non-null-assertion": import("./state.js").State.ON;
|
|
@@ -681,30 +674,30 @@ declare const _default: {
|
|
|
681
674
|
];
|
|
682
675
|
readonly "ts/no-unsafe-return": import("./state.js").State.ON;
|
|
683
676
|
readonly "ts/no-unsafe-unary-minus": import("./state.js").State.ON;
|
|
684
|
-
readonly "ts/no-unused-private-class-members": import("./state.js").State.
|
|
685
|
-
readonly "ts/no-useless-empty-export": import("./state.js").State.
|
|
677
|
+
readonly "ts/no-unused-private-class-members": import("./state.js").State.WARN;
|
|
678
|
+
readonly "ts/no-useless-empty-export": import("./state.js").State.WARN;
|
|
686
679
|
readonly "ts/no-wrapper-object-types": import("./state.js").State.ON;
|
|
687
680
|
readonly "ts/parameter-properties": readonly [
|
|
688
|
-
import("./state.js").State.
|
|
681
|
+
import("./state.js").State.WARN,
|
|
689
682
|
{
|
|
690
683
|
readonly prefer: "parameter-property";
|
|
691
684
|
}
|
|
692
685
|
];
|
|
693
|
-
readonly "ts/prefer-as-const": import("./state.js").State.
|
|
694
|
-
readonly "ts/prefer-find": import("./state.js").State.
|
|
695
|
-
readonly "ts/prefer-for-of": import("./state.js").State.
|
|
696
|
-
readonly "ts/prefer-function-type": import("./state.js").State.
|
|
697
|
-
readonly "ts/prefer-includes": import("./state.js").State.
|
|
698
|
-
readonly "ts/prefer-namespace-keyword": import("./state.js").State.
|
|
686
|
+
readonly "ts/prefer-as-const": import("./state.js").State.WARN;
|
|
687
|
+
readonly "ts/prefer-find": import("./state.js").State.WARN;
|
|
688
|
+
readonly "ts/prefer-for-of": import("./state.js").State.WARN;
|
|
689
|
+
readonly "ts/prefer-function-type": import("./state.js").State.WARN;
|
|
690
|
+
readonly "ts/prefer-includes": import("./state.js").State.WARN;
|
|
691
|
+
readonly "ts/prefer-namespace-keyword": import("./state.js").State.WARN;
|
|
699
692
|
readonly "ts/prefer-nullish-coalescing": readonly [
|
|
700
|
-
import("./state.js").State.
|
|
693
|
+
import("./state.js").State.WARN,
|
|
701
694
|
{
|
|
702
695
|
readonly ignoreMixedLogicalExpressions: true;
|
|
703
696
|
readonly ignorePrimitives: true;
|
|
704
697
|
}
|
|
705
698
|
];
|
|
706
699
|
readonly "ts/prefer-optional-chain": readonly [
|
|
707
|
-
import("./state.js").State.
|
|
700
|
+
import("./state.js").State.WARN,
|
|
708
701
|
{
|
|
709
702
|
readonly checkBigInt: false;
|
|
710
703
|
readonly checkBoolean: false;
|
|
@@ -712,14 +705,13 @@ declare const _default: {
|
|
|
712
705
|
readonly checkString: false;
|
|
713
706
|
}
|
|
714
707
|
];
|
|
715
|
-
readonly "ts/prefer-readonly": import("./state.js").State.
|
|
716
|
-
readonly "ts/prefer-reduce-type-parameter": import("./state.js").State.
|
|
717
|
-
readonly "ts/prefer-regexp-exec": import("./state.js").State.
|
|
718
|
-
readonly "ts/prefer-return-this-type": import("./state.js").State.
|
|
719
|
-
readonly "ts/prefer-string-starts-ends-with": import("./state.js").State.
|
|
708
|
+
readonly "ts/prefer-readonly": import("./state.js").State.WARN;
|
|
709
|
+
readonly "ts/prefer-reduce-type-parameter": import("./state.js").State.WARN;
|
|
710
|
+
readonly "ts/prefer-regexp-exec": import("./state.js").State.WARN;
|
|
711
|
+
readonly "ts/prefer-return-this-type": import("./state.js").State.WARN;
|
|
712
|
+
readonly "ts/prefer-string-starts-ends-with": import("./state.js").State.WARN;
|
|
720
713
|
readonly "ts/promise-function-async": import("./state.js").State.ON;
|
|
721
|
-
readonly "ts/
|
|
722
|
-
readonly "ts/require-array-sort-compare": import("./state.js").State.ON;
|
|
714
|
+
readonly "ts/require-array-sort-compare": import("./state.js").State.WARN;
|
|
723
715
|
readonly "ts/restrict-plus-operands": readonly [
|
|
724
716
|
import("./state.js").State.ON,
|
|
725
717
|
{
|
|
@@ -766,7 +758,7 @@ declare const _default: {
|
|
|
766
758
|
rules: {
|
|
767
759
|
readonly "dot-notation": import("./state.js").State.OFF;
|
|
768
760
|
readonly "ts/dot-notation": readonly [
|
|
769
|
-
import("./state.js").State.
|
|
761
|
+
import("./state.js").State.WARN,
|
|
770
762
|
{
|
|
771
763
|
readonly allowPrivateClassPropertyAccess: true;
|
|
772
764
|
readonly allowProtectedClassPropertyAccess: true;
|
|
@@ -777,27 +769,18 @@ declare const _default: {
|
|
|
777
769
|
readonly "ts/no-implied-eval": import("./state.js").State.ON;
|
|
778
770
|
readonly "no-restricted-imports": import("./state.js").State.OFF;
|
|
779
771
|
readonly "no-unused-vars": import("./state.js").State.OFF;
|
|
780
|
-
readonly "ts/no-unused-vars": import("./state.js").State.
|
|
772
|
+
readonly "ts/no-unused-vars": import("./state.js").State.WARN;
|
|
781
773
|
readonly "no-throw-literal": import("./state.js").State.OFF;
|
|
782
774
|
readonly "ts/only-throw-error": readonly [
|
|
783
|
-
import("./state.js").State.
|
|
775
|
+
import("./state.js").State.WARN,
|
|
784
776
|
{
|
|
785
777
|
readonly allowThrowingAny: false;
|
|
786
778
|
}
|
|
787
779
|
];
|
|
788
780
|
readonly "prefer-destructuring": import("./state.js").State.OFF;
|
|
789
|
-
readonly "ts/prefer-destructuring": readonly [
|
|
790
|
-
import("./state.js").State.ON,
|
|
791
|
-
{
|
|
792
|
-
readonly AssignmentExpression: {
|
|
793
|
-
readonly array: false;
|
|
794
|
-
readonly object: false;
|
|
795
|
-
};
|
|
796
|
-
}
|
|
797
|
-
];
|
|
798
781
|
readonly "prefer-promise-reject-errors": import("./state.js").State.OFF;
|
|
799
782
|
readonly "ts/prefer-promise-reject-errors": readonly [
|
|
800
|
-
import("./state.js").State.
|
|
783
|
+
import("./state.js").State.WARN,
|
|
801
784
|
{
|
|
802
785
|
readonly allowThrowingUnknown: true;
|
|
803
786
|
}
|
|
@@ -846,7 +829,7 @@ declare const _default: {
|
|
|
846
829
|
readonly "svelte/no-at-html-tags": import("./state.js").State.ON;
|
|
847
830
|
readonly "svelte/no-target-blank": import("./state.js").State.ON;
|
|
848
831
|
readonly "svelte/block-lang": readonly [
|
|
849
|
-
import("./state.js").State.
|
|
832
|
+
import("./state.js").State.WARN,
|
|
850
833
|
{
|
|
851
834
|
readonly script: readonly [
|
|
852
835
|
"ts"
|
|
@@ -867,64 +850,64 @@ declare const _default: {
|
|
|
867
850
|
readonly "svelte/no-svelte-internal": import("./state.js").State.ON;
|
|
868
851
|
readonly "svelte/no-unnecessary-state-wrap": import("./state.js").State.ON;
|
|
869
852
|
readonly "svelte/no-unused-props": readonly [
|
|
870
|
-
import("./state.js").State.
|
|
853
|
+
import("./state.js").State.WARN,
|
|
871
854
|
{
|
|
872
855
|
readonly checkImportedTypes: true;
|
|
873
856
|
}
|
|
874
857
|
];
|
|
875
|
-
readonly "svelte/no-unused-svelte-ignore": import("./state.js").State.
|
|
876
|
-
readonly "svelte/no-useless-children-snippet": import("./state.js").State.
|
|
877
|
-
readonly "svelte/no-useless-mustaches": import("./state.js").State.
|
|
858
|
+
readonly "svelte/no-unused-svelte-ignore": import("./state.js").State.WARN;
|
|
859
|
+
readonly "svelte/no-useless-children-snippet": import("./state.js").State.WARN;
|
|
860
|
+
readonly "svelte/no-useless-mustaches": import("./state.js").State.WARN;
|
|
878
861
|
readonly "svelte/prefer-const": readonly [
|
|
879
|
-
import("./state.js").State.
|
|
862
|
+
import("./state.js").State.WARN,
|
|
880
863
|
{
|
|
881
864
|
readonly destructuring: "all";
|
|
882
865
|
}
|
|
883
866
|
];
|
|
884
|
-
readonly "svelte/prefer-destructured-store-props": import("./state.js").State.
|
|
885
|
-
readonly "svelte/prefer-writable-derived": import("./state.js").State.
|
|
867
|
+
readonly "svelte/prefer-destructured-store-props": import("./state.js").State.WARN;
|
|
868
|
+
readonly "svelte/prefer-writable-derived": import("./state.js").State.WARN;
|
|
886
869
|
readonly "svelte/require-each-key": import("./state.js").State.ON;
|
|
887
870
|
readonly "svelte/require-event-dispatcher-types": import("./state.js").State.ON;
|
|
888
871
|
readonly "svelte/require-optimized-style-attribute": import("./state.js").State.ON;
|
|
889
872
|
readonly "svelte/require-stores-init": import("./state.js").State.ON;
|
|
890
873
|
readonly "svelte/valid-each-key": import("./state.js").State.ON;
|
|
891
874
|
readonly "svelte/consistent-selector-style": readonly [
|
|
892
|
-
import("./state.js").State.
|
|
875
|
+
import("./state.js").State.WARN,
|
|
893
876
|
{
|
|
894
877
|
readonly checkGlobal: true;
|
|
895
878
|
}
|
|
896
879
|
];
|
|
897
880
|
readonly "svelte/derived-has-same-inputs-outputs": import("./state.js").State.ON;
|
|
898
881
|
readonly "svelte/first-attribute-linebreak": readonly [
|
|
899
|
-
import("./state.js").State.
|
|
882
|
+
import("./state.js").State.WARN,
|
|
900
883
|
{
|
|
901
884
|
readonly singleline: "below";
|
|
902
885
|
}
|
|
903
886
|
];
|
|
904
|
-
readonly "svelte/html-closing-bracket-new-line": import("./state.js").State.
|
|
887
|
+
readonly "svelte/html-closing-bracket-new-line": import("./state.js").State.WARN;
|
|
905
888
|
readonly "svelte/html-closing-bracket-spacing": readonly [
|
|
906
|
-
import("./state.js").State.
|
|
889
|
+
import("./state.js").State.WARN,
|
|
907
890
|
{
|
|
908
891
|
readonly selfClosingTag: "never";
|
|
909
892
|
}
|
|
910
893
|
];
|
|
911
|
-
readonly "svelte/html-self-closing": import("./state.js").State.
|
|
912
|
-
readonly "svelte/indent": import("./state.js").State.
|
|
913
|
-
readonly "svelte/max-attributes-per-line": import("./state.js").State.
|
|
914
|
-
readonly "svelte/mustache-spacing": import("./state.js").State.
|
|
915
|
-
readonly "svelte/no-extra-reactive-curlies": import("./state.js").State.
|
|
916
|
-
readonly "svelte/no-spaces-around-equal-signs-in-attribute": import("./state.js").State.
|
|
894
|
+
readonly "svelte/html-self-closing": import("./state.js").State.WARN;
|
|
895
|
+
readonly "svelte/indent": import("./state.js").State.WARN;
|
|
896
|
+
readonly "svelte/max-attributes-per-line": import("./state.js").State.WARN;
|
|
897
|
+
readonly "svelte/mustache-spacing": import("./state.js").State.WARN;
|
|
898
|
+
readonly "svelte/no-extra-reactive-curlies": import("./state.js").State.WARN;
|
|
899
|
+
readonly "svelte/no-spaces-around-equal-signs-in-attribute": import("./state.js").State.WARN;
|
|
917
900
|
readonly "svelte/prefer-class-directive": readonly [
|
|
918
|
-
import("./state.js").State.
|
|
901
|
+
import("./state.js").State.WARN,
|
|
919
902
|
{
|
|
920
903
|
readonly prefer: "empty";
|
|
921
904
|
}
|
|
922
905
|
];
|
|
923
|
-
readonly "svelte/prefer-style-directive": import("./state.js").State.
|
|
906
|
+
readonly "svelte/prefer-style-directive": import("./state.js").State.WARN;
|
|
924
907
|
readonly "svelte/require-event-prefix": import("./state.js").State.ON;
|
|
925
|
-
readonly "svelte/shorthand-attribute": import("./state.js").State.
|
|
926
|
-
readonly "svelte/shorthand-directive": import("./state.js").State.
|
|
927
|
-
readonly "svelte/spaced-html-comment": import("./state.js").State.
|
|
908
|
+
readonly "svelte/shorthand-attribute": import("./state.js").State.WARN;
|
|
909
|
+
readonly "svelte/shorthand-directive": import("./state.js").State.WARN;
|
|
910
|
+
readonly "svelte/spaced-html-comment": import("./state.js").State.WARN;
|
|
928
911
|
readonly "svelte/no-export-load-in-svelte-module-in-kit-pages": import("./state.js").State.ON;
|
|
929
912
|
readonly "svelte/no-navigation-without-resolve": import("./state.js").State.ON;
|
|
930
913
|
readonly "svelte/valid-prop-names-in-kit-pages": import("./state.js").State.ON;
|
|
@@ -939,52 +922,52 @@ declare const _default: {
|
|
|
939
922
|
"both"
|
|
940
923
|
];
|
|
941
924
|
readonly "stylistic/no-trailing-spaces": import("./state.js").State.OFF;
|
|
942
|
-
readonly "svelte/no-trailing-spaces": import("./state.js").State.
|
|
925
|
+
readonly "svelte/no-trailing-spaces": import("./state.js").State.WARN;
|
|
943
926
|
};
|
|
944
927
|
})[];
|
|
945
928
|
html: {
|
|
946
929
|
rules: {
|
|
947
|
-
readonly "html/no-duplicate-attrs": import("./state.js").State.
|
|
948
|
-
readonly "html/no-duplicate-class": import("./state.js").State.
|
|
949
|
-
readonly "html/no-duplicate-id": import("./state.js").State.
|
|
950
|
-
readonly "html/no-duplicate-in-head": import("./state.js").State.
|
|
951
|
-
readonly "html/no-ineffective-attrs": import("./state.js").State.
|
|
952
|
-
readonly "html/no-invalid-entity": import("./state.js").State.
|
|
953
|
-
readonly "html/no-nested-interactive": import("./state.js").State.
|
|
954
|
-
readonly "html/no-obsolete-tags": import("./state.js").State.
|
|
955
|
-
readonly "html/no-target-blank": import("./state.js").State.
|
|
956
|
-
readonly "html/no-whitespace-only-children": import("./state.js").State.
|
|
957
|
-
readonly "html/require-button-type": import("./state.js").State.
|
|
958
|
-
readonly "html/require-closing-tags": import("./state.js").State.
|
|
959
|
-
readonly "html/require-doctype": import("./state.js").State.
|
|
960
|
-
readonly "html/require-li-container": import("./state.js").State.
|
|
961
|
-
readonly "html/require-meta-charset": import("./state.js").State.
|
|
962
|
-
readonly "html/use-baseline": import("./state.js").State.
|
|
963
|
-
readonly "html/no-multiple-h1": import("./state.js").State.
|
|
964
|
-
readonly "html/require-lang": import("./state.js").State.
|
|
965
|
-
readonly "html/no-abstract-roles": import("./state.js").State.
|
|
966
|
-
readonly "html/no-accesskey-attrs": import("./state.js").State.
|
|
967
|
-
readonly "html/no-aria-hidden-body": import("./state.js").State.
|
|
968
|
-
readonly "html/no-aria-hidden-on-focusable": import("./state.js").State.
|
|
969
|
-
readonly "html/no-empty-headings": import("./state.js").State.
|
|
970
|
-
readonly "html/no-heading-inside-button": import("./state.js").State.
|
|
971
|
-
readonly "html/no-invalid-role": import("./state.js").State.
|
|
972
|
-
readonly "html/no-non-scalable-viewport": import("./state.js").State.
|
|
973
|
-
readonly "html/no-positive-tabindex": import("./state.js").State.
|
|
974
|
-
readonly "html/no-skip-heading-levels": import("./state.js").State.
|
|
975
|
-
readonly "html/require-form-method": import("./state.js").State.
|
|
976
|
-
readonly "html/require-frame-title": import("./state.js").State.
|
|
977
|
-
readonly "html/require-img-alt": import("./state.js").State.
|
|
978
|
-
readonly "html/require-input-label": import("./state.js").State.
|
|
979
|
-
readonly "html/require-meta-viewport": import("./state.js").State.
|
|
930
|
+
readonly "html/no-duplicate-attrs": import("./state.js").State.WARN;
|
|
931
|
+
readonly "html/no-duplicate-class": import("./state.js").State.WARN;
|
|
932
|
+
readonly "html/no-duplicate-id": import("./state.js").State.WARN;
|
|
933
|
+
readonly "html/no-duplicate-in-head": import("./state.js").State.WARN;
|
|
934
|
+
readonly "html/no-ineffective-attrs": import("./state.js").State.WARN;
|
|
935
|
+
readonly "html/no-invalid-entity": import("./state.js").State.WARN;
|
|
936
|
+
readonly "html/no-nested-interactive": import("./state.js").State.WARN;
|
|
937
|
+
readonly "html/no-obsolete-tags": import("./state.js").State.WARN;
|
|
938
|
+
readonly "html/no-target-blank": import("./state.js").State.WARN;
|
|
939
|
+
readonly "html/no-whitespace-only-children": import("./state.js").State.WARN;
|
|
940
|
+
readonly "html/require-button-type": import("./state.js").State.WARN;
|
|
941
|
+
readonly "html/require-closing-tags": import("./state.js").State.WARN;
|
|
942
|
+
readonly "html/require-doctype": import("./state.js").State.WARN;
|
|
943
|
+
readonly "html/require-li-container": import("./state.js").State.WARN;
|
|
944
|
+
readonly "html/require-meta-charset": import("./state.js").State.WARN;
|
|
945
|
+
readonly "html/use-baseline": import("./state.js").State.WARN;
|
|
946
|
+
readonly "html/no-multiple-h1": import("./state.js").State.WARN;
|
|
947
|
+
readonly "html/require-lang": import("./state.js").State.WARN;
|
|
948
|
+
readonly "html/no-abstract-roles": import("./state.js").State.WARN;
|
|
949
|
+
readonly "html/no-accesskey-attrs": import("./state.js").State.WARN;
|
|
950
|
+
readonly "html/no-aria-hidden-body": import("./state.js").State.WARN;
|
|
951
|
+
readonly "html/no-aria-hidden-on-focusable": import("./state.js").State.WARN;
|
|
952
|
+
readonly "html/no-empty-headings": import("./state.js").State.WARN;
|
|
953
|
+
readonly "html/no-heading-inside-button": import("./state.js").State.WARN;
|
|
954
|
+
readonly "html/no-invalid-role": import("./state.js").State.WARN;
|
|
955
|
+
readonly "html/no-non-scalable-viewport": import("./state.js").State.WARN;
|
|
956
|
+
readonly "html/no-positive-tabindex": import("./state.js").State.WARN;
|
|
957
|
+
readonly "html/no-skip-heading-levels": import("./state.js").State.WARN;
|
|
958
|
+
readonly "html/require-form-method": import("./state.js").State.WARN;
|
|
959
|
+
readonly "html/require-frame-title": import("./state.js").State.WARN;
|
|
960
|
+
readonly "html/require-img-alt": import("./state.js").State.WARN;
|
|
961
|
+
readonly "html/require-input-label": import("./state.js").State.WARN;
|
|
962
|
+
readonly "html/require-meta-viewport": import("./state.js").State.WARN;
|
|
980
963
|
readonly "html/attrs-newline": readonly [
|
|
981
|
-
import("./state.js").State.
|
|
964
|
+
import("./state.js").State.WARN,
|
|
982
965
|
{
|
|
983
966
|
readonly ifAttrsMoreThan: 0;
|
|
984
967
|
}
|
|
985
968
|
];
|
|
986
969
|
readonly "html/element-newline": readonly [
|
|
987
|
-
import("./state.js").State.
|
|
970
|
+
import("./state.js").State.WARN,
|
|
988
971
|
{
|
|
989
972
|
readonly skip: readonly [
|
|
990
973
|
"head"
|
|
@@ -995,43 +978,43 @@ declare const _default: {
|
|
|
995
978
|
}
|
|
996
979
|
];
|
|
997
980
|
readonly "html/indent": readonly [
|
|
998
|
-
import("./state.js").State.
|
|
981
|
+
import("./state.js").State.WARN,
|
|
999
982
|
2
|
|
1000
983
|
];
|
|
1001
|
-
readonly "html/lowercase": import("./state.js").State.
|
|
984
|
+
readonly "html/lowercase": import("./state.js").State.WARN;
|
|
1002
985
|
readonly "html/no-extra-spacing-attrs": readonly [
|
|
1003
|
-
import("./state.js").State.
|
|
986
|
+
import("./state.js").State.WARN,
|
|
1004
987
|
{
|
|
1005
988
|
readonly disallowMissing: true;
|
|
1006
989
|
readonly disallowTabs: true;
|
|
1007
990
|
readonly disallowInAssignment: true;
|
|
1008
991
|
}
|
|
1009
992
|
];
|
|
1010
|
-
readonly "html/no-extra-spacing-text": import("./state.js").State.
|
|
993
|
+
readonly "html/no-extra-spacing-text": import("./state.js").State.WARN;
|
|
1011
994
|
readonly "html/no-multiple-empty-lines": readonly [
|
|
1012
|
-
import("./state.js").State.
|
|
995
|
+
import("./state.js").State.WARN,
|
|
1013
996
|
{
|
|
1014
997
|
readonly max: 1;
|
|
1015
998
|
}
|
|
1016
999
|
];
|
|
1017
|
-
readonly "html/no-trailing-spaces": import("./state.js").State.
|
|
1018
|
-
readonly "html/quotes": import("./state.js").State.
|
|
1000
|
+
readonly "html/no-trailing-spaces": import("./state.js").State.WARN;
|
|
1001
|
+
readonly "html/quotes": import("./state.js").State.WARN;
|
|
1019
1002
|
};
|
|
1020
1003
|
}[];
|
|
1021
1004
|
css: {
|
|
1022
1005
|
rules: {
|
|
1023
|
-
readonly "css/font-family-fallbacks": import("./state.js").State.
|
|
1024
|
-
readonly "css/no-duplicate-imports": import("./state.js").State.
|
|
1025
|
-
readonly "css/no-duplicate-keyframe-selectors": import("./state.js").State.
|
|
1026
|
-
readonly "css/no-empty-blocks": import("./state.js").State.
|
|
1027
|
-
readonly "css/no-important": import("./state.js").State.
|
|
1006
|
+
readonly "css/font-family-fallbacks": import("./state.js").State.WARN;
|
|
1007
|
+
readonly "css/no-duplicate-imports": import("./state.js").State.WARN;
|
|
1008
|
+
readonly "css/no-duplicate-keyframe-selectors": import("./state.js").State.WARN;
|
|
1009
|
+
readonly "css/no-empty-blocks": import("./state.js").State.WARN;
|
|
1010
|
+
readonly "css/no-important": import("./state.js").State.WARN;
|
|
1028
1011
|
readonly "css/no-invalid-at-rule-placement": import("./state.js").State.ON;
|
|
1029
1012
|
readonly "css/no-invalid-at-rules": import("./state.js").State.ON;
|
|
1030
1013
|
readonly "css/no-invalid-named-grid-areas": import("./state.js").State.ON;
|
|
1031
|
-
readonly "css/no-unmatchable-selectors": import("./state.js").State.
|
|
1032
|
-
readonly "css/prefer-logical-properties": import("./state.js").State.
|
|
1033
|
-
readonly "css/relative-font-units": import("./state.js").State.
|
|
1034
|
-
readonly "css/use-baseline": import("./state.js").State.
|
|
1014
|
+
readonly "css/no-unmatchable-selectors": import("./state.js").State.WARN;
|
|
1015
|
+
readonly "css/prefer-logical-properties": import("./state.js").State.WARN;
|
|
1016
|
+
readonly "css/relative-font-units": import("./state.js").State.WARN;
|
|
1017
|
+
readonly "css/use-baseline": import("./state.js").State.WARN;
|
|
1035
1018
|
};
|
|
1036
1019
|
}[];
|
|
1037
1020
|
json: ({
|
|
@@ -1064,27 +1047,24 @@ declare const _default: {
|
|
|
1064
1047
|
};
|
|
1065
1048
|
} | {
|
|
1066
1049
|
rules: {
|
|
1067
|
-
readonly "jsonc/array-bracket-spacing": import("./state.js").State.
|
|
1050
|
+
readonly "jsonc/array-bracket-spacing": import("./state.js").State.WARN;
|
|
1068
1051
|
readonly "jsonc/array-element-newline": readonly [
|
|
1069
|
-
import("./state.js").State.
|
|
1052
|
+
import("./state.js").State.WARN,
|
|
1070
1053
|
"consistent"
|
|
1071
1054
|
];
|
|
1072
1055
|
readonly "jsonc/comma-dangle": import("./state.js").State.ON;
|
|
1073
|
-
readonly "jsonc/comma-style": import("./state.js").State.
|
|
1056
|
+
readonly "jsonc/comma-style": import("./state.js").State.WARN;
|
|
1074
1057
|
readonly "jsonc/indent": readonly [
|
|
1075
|
-
import("./state.js").State.
|
|
1058
|
+
import("./state.js").State.WARN,
|
|
1076
1059
|
2
|
|
1077
1060
|
];
|
|
1078
|
-
readonly "jsonc/key-spacing": import("./state.js").State.
|
|
1061
|
+
readonly "jsonc/key-spacing": import("./state.js").State.WARN;
|
|
1079
1062
|
readonly "jsonc/no-floating-decimal": import("./state.js").State.ON;
|
|
1080
1063
|
readonly "jsonc/no-irregular-whitespace": readonly [
|
|
1081
1064
|
import("./state.js").State.ON,
|
|
1082
1065
|
{
|
|
1083
1066
|
readonly skipStrings: true;
|
|
1084
1067
|
readonly skipComments: true;
|
|
1085
|
-
readonly skipRegExps: true;
|
|
1086
|
-
readonly skipTemplates: true;
|
|
1087
|
-
readonly skipJSXText: true;
|
|
1088
1068
|
}
|
|
1089
1069
|
];
|
|
1090
1070
|
readonly "jsonc/no-multi-str": import("./state.js").State.ON;
|
|
@@ -1093,7 +1073,7 @@ declare const _default: {
|
|
|
1093
1073
|
readonly "jsonc/no-sparse-arrays": import("./state.js").State.ON;
|
|
1094
1074
|
readonly "jsonc/no-useless-escape": import("./state.js").State.ON;
|
|
1095
1075
|
readonly "jsonc/object-curly-newline": readonly [
|
|
1096
|
-
import("./state.js").State.
|
|
1076
|
+
import("./state.js").State.WARN,
|
|
1097
1077
|
{
|
|
1098
1078
|
readonly consistent: true;
|
|
1099
1079
|
readonly multiline: true;
|
|
@@ -1101,10 +1081,10 @@ declare const _default: {
|
|
|
1101
1081
|
}
|
|
1102
1082
|
];
|
|
1103
1083
|
readonly "jsonc/object-curly-spacing": readonly [
|
|
1104
|
-
import("./state.js").State.
|
|
1084
|
+
import("./state.js").State.WARN,
|
|
1105
1085
|
"always"
|
|
1106
1086
|
];
|
|
1107
|
-
readonly "jsonc/object-property-newline": import("./state.js").State.
|
|
1087
|
+
readonly "jsonc/object-property-newline": import("./state.js").State.WARN;
|
|
1108
1088
|
readonly "jsonc/quote-props": import("./state.js").State.ON;
|
|
1109
1089
|
readonly "jsonc/quotes": import("./state.js").State.ON;
|
|
1110
1090
|
readonly "jsonc/space-unary-ops": import("./state.js").State.ON;
|
|
@@ -1118,29 +1098,30 @@ declare const _default: {
|
|
|
1118
1098
|
jsoncc: {
|
|
1119
1099
|
rules: {
|
|
1120
1100
|
readonly "jsonc/comma-dangle": readonly [
|
|
1121
|
-
import("./state.js").State.
|
|
1101
|
+
import("./state.js").State.WARN,
|
|
1122
1102
|
"always-multiline"
|
|
1123
1103
|
];
|
|
1124
1104
|
};
|
|
1125
1105
|
}[];
|
|
1126
1106
|
yml: ({
|
|
1127
1107
|
rules: {
|
|
1128
|
-
readonly "yml/block-mapping-colon-indicator-newline": import("./state.js").State.
|
|
1129
|
-
readonly "yml/block-mapping-question-indicator-newline": import("./state.js").State.
|
|
1130
|
-
readonly "yml/block-mapping": import("./state.js").State.
|
|
1131
|
-
readonly "yml/block-sequence-hyphen-indicator-newline": import("./state.js").State.
|
|
1132
|
-
readonly "yml/block-sequence": import("./state.js").State.
|
|
1133
|
-
readonly "yml/indent": import("./state.js").State.
|
|
1134
|
-
readonly "yml/no-empty-key": import("./state.js").State.
|
|
1135
|
-
readonly "yml/no-empty-sequence-entry": import("./state.js").State.
|
|
1136
|
-
readonly "yml/no-tab-indent": import("./state.js").State.
|
|
1137
|
-
readonly "yml/no-trailing-zeros": import("./state.js").State.
|
|
1138
|
-
readonly "yml/
|
|
1108
|
+
readonly "yml/block-mapping-colon-indicator-newline": import("./state.js").State.WARN;
|
|
1109
|
+
readonly "yml/block-mapping-question-indicator-newline": import("./state.js").State.WARN;
|
|
1110
|
+
readonly "yml/block-mapping": import("./state.js").State.WARN;
|
|
1111
|
+
readonly "yml/block-sequence-hyphen-indicator-newline": import("./state.js").State.WARN;
|
|
1112
|
+
readonly "yml/block-sequence": import("./state.js").State.WARN;
|
|
1113
|
+
readonly "yml/indent": import("./state.js").State.WARN;
|
|
1114
|
+
readonly "yml/no-empty-key": import("./state.js").State.WARN;
|
|
1115
|
+
readonly "yml/no-empty-sequence-entry": import("./state.js").State.WARN;
|
|
1116
|
+
readonly "yml/no-tab-indent": import("./state.js").State.WARN;
|
|
1117
|
+
readonly "yml/no-trailing-zeros": import("./state.js").State.WARN;
|
|
1118
|
+
readonly "yml/quotes": import("./state.js").State.WARN;
|
|
1119
|
+
readonly "yml/require-string-key": import("./state.js").State.WARN;
|
|
1139
1120
|
};
|
|
1140
1121
|
} | {
|
|
1141
1122
|
rules: {
|
|
1142
1123
|
readonly "yml/flow-mapping-curly-newline": readonly [
|
|
1143
|
-
import("./state.js").State.
|
|
1124
|
+
import("./state.js").State.WARN,
|
|
1144
1125
|
{
|
|
1145
1126
|
readonly consistent: true;
|
|
1146
1127
|
readonly multiline: true;
|
|
@@ -1148,18 +1129,18 @@ declare const _default: {
|
|
|
1148
1129
|
}
|
|
1149
1130
|
];
|
|
1150
1131
|
readonly "yml/flow-mapping-curly-spacing": readonly [
|
|
1151
|
-
import("./state.js").State.
|
|
1132
|
+
import("./state.js").State.WARN,
|
|
1152
1133
|
"never",
|
|
1153
1134
|
{
|
|
1154
1135
|
readonly objectsInObjects: true;
|
|
1155
1136
|
}
|
|
1156
1137
|
];
|
|
1157
|
-
readonly "yml/flow-sequence-bracket-newline": import("./state.js").State.
|
|
1158
|
-
readonly "yml/flow-sequence-bracket-spacing": import("./state.js").State.
|
|
1159
|
-
readonly "yml/key-spacing": import("./state.js").State.
|
|
1138
|
+
readonly "yml/flow-sequence-bracket-newline": import("./state.js").State.WARN;
|
|
1139
|
+
readonly "yml/flow-sequence-bracket-spacing": import("./state.js").State.WARN;
|
|
1140
|
+
readonly "yml/key-spacing": import("./state.js").State.WARN;
|
|
1160
1141
|
readonly "yml/no-irregular-whitespace": import("./state.js").State.ON;
|
|
1161
1142
|
readonly "yml/no-multiple-empty-lines": readonly [
|
|
1162
|
-
import("./state.js").State.
|
|
1143
|
+
import("./state.js").State.WARN,
|
|
1163
1144
|
{
|
|
1164
1145
|
readonly max: 1;
|
|
1165
1146
|
readonly maxBOF: 0;
|
|
@@ -1167,7 +1148,7 @@ declare const _default: {
|
|
|
1167
1148
|
}
|
|
1168
1149
|
];
|
|
1169
1150
|
readonly "yml/spaced-comment": readonly [
|
|
1170
|
-
import("./state.js").State.
|
|
1151
|
+
import("./state.js").State.WARN,
|
|
1171
1152
|
"always",
|
|
1172
1153
|
{
|
|
1173
1154
|
readonly exceptions: readonly [
|