@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/index.d.ts
CHANGED
|
@@ -89,8 +89,8 @@ declare const _default: {
|
|
|
89
89
|
readonly "no-undef": import("./rules/state.js").State.ON;
|
|
90
90
|
readonly "no-unexpected-multiline": import("./rules/state.js").State.ON;
|
|
91
91
|
readonly "no-unmodified-loop-condition": import("./rules/state.js").State.ON;
|
|
92
|
-
readonly "no-unreachable": import("./rules/state.js").State.
|
|
93
|
-
readonly "no-unreachable-loop": import("./rules/state.js").State.
|
|
92
|
+
readonly "no-unreachable": import("./rules/state.js").State.WARN;
|
|
93
|
+
readonly "no-unreachable-loop": import("./rules/state.js").State.WARN;
|
|
94
94
|
readonly "no-unsafe-finally": import("./rules/state.js").State.ON;
|
|
95
95
|
readonly "no-unsafe-negation": readonly [
|
|
96
96
|
import("./rules/state.js").State.ON,
|
|
@@ -104,8 +104,8 @@ declare const _default: {
|
|
|
104
104
|
readonly disallowArithmeticOperators: true;
|
|
105
105
|
}
|
|
106
106
|
];
|
|
107
|
-
readonly "no-unused-private-class-members": import("./rules/state.js").State.
|
|
108
|
-
readonly "no-unused-vars": import("./rules/state.js").State.
|
|
107
|
+
readonly "no-unused-private-class-members": import("./rules/state.js").State.WARN;
|
|
108
|
+
readonly "no-unused-vars": import("./rules/state.js").State.WARN;
|
|
109
109
|
readonly "no-use-before-define": readonly [
|
|
110
110
|
import("./rules/state.js").State.ON,
|
|
111
111
|
{
|
|
@@ -133,21 +133,21 @@ declare const _default: {
|
|
|
133
133
|
readonly enforceForTSTypes: true;
|
|
134
134
|
}
|
|
135
135
|
];
|
|
136
|
-
readonly "arrow-body-style": import("./rules/state.js").State.
|
|
136
|
+
readonly "arrow-body-style": import("./rules/state.js").State.WARN;
|
|
137
137
|
readonly "block-scoped-var": import("./rules/state.js").State.ON;
|
|
138
138
|
readonly "consistent-return": import("./rules/state.js").State.ON;
|
|
139
139
|
readonly "consistent-this": import("./rules/state.js").State.ON;
|
|
140
140
|
readonly curly: readonly [
|
|
141
|
-
import("./rules/state.js").State.
|
|
141
|
+
import("./rules/state.js").State.WARN,
|
|
142
142
|
"multi"
|
|
143
143
|
];
|
|
144
144
|
readonly "default-case-last": import("./rules/state.js").State.ON;
|
|
145
145
|
readonly "default-param-last": import("./rules/state.js").State.ON;
|
|
146
|
-
readonly "dot-notation": import("./rules/state.js").State.
|
|
146
|
+
readonly "dot-notation": import("./rules/state.js").State.WARN;
|
|
147
147
|
readonly eqeqeq: import("./rules/state.js").State.ON;
|
|
148
|
-
readonly "init-declarations": import("./rules/state.js").State.
|
|
148
|
+
readonly "init-declarations": import("./rules/state.js").State.WARN;
|
|
149
149
|
readonly "logical-assignment-operators": readonly [
|
|
150
|
-
import("./rules/state.js").State.
|
|
150
|
+
import("./rules/state.js").State.WARN,
|
|
151
151
|
"always",
|
|
152
152
|
{
|
|
153
153
|
readonly enforceForIfStatements: true;
|
|
@@ -161,9 +161,10 @@ declare const _default: {
|
|
|
161
161
|
readonly "no-continue": import("./rules/state.js").State.ON;
|
|
162
162
|
readonly "no-delete-var": import("./rules/state.js").State.ON;
|
|
163
163
|
readonly "no-div-regex": import("./rules/state.js").State.ON;
|
|
164
|
+
readonly "no-else-return": import("./rules/state.js").State.ON;
|
|
164
165
|
readonly "no-empty": import("./rules/state.js").State.ON;
|
|
165
166
|
readonly "no-empty-function": readonly [
|
|
166
|
-
import("./rules/state.js").State.
|
|
167
|
+
import("./rules/state.js").State.WARN,
|
|
167
168
|
{
|
|
168
169
|
readonly allow: readonly [
|
|
169
170
|
"constructors",
|
|
@@ -174,18 +175,18 @@ declare const _default: {
|
|
|
174
175
|
];
|
|
175
176
|
}
|
|
176
177
|
];
|
|
177
|
-
readonly "no-empty-static-block": import("./rules/state.js").State.
|
|
178
|
+
readonly "no-empty-static-block": import("./rules/state.js").State.WARN;
|
|
178
179
|
readonly "no-eq-null": import("./rules/state.js").State.ON;
|
|
179
180
|
readonly "no-eval": import("./rules/state.js").State.ON;
|
|
180
181
|
readonly "no-extend-native": import("./rules/state.js").State.ON;
|
|
181
182
|
readonly "no-extra-bind": import("./rules/state.js").State.ON;
|
|
182
183
|
readonly "no-extra-boolean-cast": readonly [
|
|
183
|
-
import("./rules/state.js").State.
|
|
184
|
+
import("./rules/state.js").State.WARN,
|
|
184
185
|
{
|
|
185
186
|
readonly enforceForLogicalOperands: true;
|
|
186
187
|
}
|
|
187
188
|
];
|
|
188
|
-
readonly "no-extra-label": import("./rules/state.js").State.
|
|
189
|
+
readonly "no-extra-label": import("./rules/state.js").State.WARN;
|
|
189
190
|
readonly "no-global-assign": import("./rules/state.js").State.ON;
|
|
190
191
|
readonly "no-implicit-coercion": import("./rules/state.js").State.ON;
|
|
191
192
|
readonly "no-implied-eval": import("./rules/state.js").State.ON;
|
|
@@ -196,11 +197,11 @@ declare const _default: {
|
|
|
196
197
|
}
|
|
197
198
|
];
|
|
198
199
|
readonly "no-iterator": import("./rules/state.js").State.ON;
|
|
199
|
-
readonly "no-label-var": import("./rules/state.js").State.
|
|
200
|
+
readonly "no-label-var": import("./rules/state.js").State.WARN;
|
|
200
201
|
readonly "no-lone-blocks": import("./rules/state.js").State.ON;
|
|
201
202
|
readonly "no-loop-func": import("./rules/state.js").State.ON;
|
|
202
203
|
readonly "no-multi-assign": import("./rules/state.js").State.ON;
|
|
203
|
-
readonly "no-multi-str": import("./rules/state.js").State.
|
|
204
|
+
readonly "no-multi-str": import("./rules/state.js").State.WARN;
|
|
204
205
|
readonly "no-new": import("./rules/state.js").State.ON;
|
|
205
206
|
readonly "no-new-func": import("./rules/state.js").State.ON;
|
|
206
207
|
readonly "no-new-wrappers": import("./rules/state.js").State.ON;
|
|
@@ -219,33 +220,33 @@ declare const _default: {
|
|
|
219
220
|
readonly "no-script-url": import("./rules/state.js").State.ON;
|
|
220
221
|
readonly "no-sequences": import("./rules/state.js").State.ON;
|
|
221
222
|
readonly "no-shadow-restricted-names": import("./rules/state.js").State.ON;
|
|
222
|
-
readonly "no-throw-literal": import("./rules/state.js").State.
|
|
223
|
+
readonly "no-throw-literal": import("./rules/state.js").State.WARN;
|
|
223
224
|
readonly "no-undef-init": import("./rules/state.js").State.ON;
|
|
224
|
-
readonly "no-unneeded-ternary": import("./rules/state.js").State.
|
|
225
|
+
readonly "no-unneeded-ternary": import("./rules/state.js").State.WARN;
|
|
225
226
|
readonly "no-unused-expressions": readonly [
|
|
226
|
-
import("./rules/state.js").State.
|
|
227
|
+
import("./rules/state.js").State.WARN,
|
|
227
228
|
{
|
|
228
229
|
readonly allowShortCircuit: true;
|
|
229
230
|
readonly allowTernary: true;
|
|
230
231
|
}
|
|
231
232
|
];
|
|
232
|
-
readonly "no-unused-labels": import("./rules/state.js").State.
|
|
233
|
-
readonly "no-useless-call": import("./rules/state.js").State.
|
|
234
|
-
readonly "no-useless-catch": import("./rules/state.js").State.
|
|
235
|
-
readonly "no-useless-computed-key": import("./rules/state.js").State.
|
|
236
|
-
readonly "no-useless-concat": import("./rules/state.js").State.
|
|
237
|
-
readonly "no-useless-constructor": import("./rules/state.js").State.
|
|
233
|
+
readonly "no-unused-labels": import("./rules/state.js").State.WARN;
|
|
234
|
+
readonly "no-useless-call": import("./rules/state.js").State.WARN;
|
|
235
|
+
readonly "no-useless-catch": import("./rules/state.js").State.WARN;
|
|
236
|
+
readonly "no-useless-computed-key": import("./rules/state.js").State.WARN;
|
|
237
|
+
readonly "no-useless-concat": import("./rules/state.js").State.WARN;
|
|
238
|
+
readonly "no-useless-constructor": import("./rules/state.js").State.WARN;
|
|
238
239
|
readonly "no-useless-escape": readonly [
|
|
239
|
-
import("./rules/state.js").State.
|
|
240
|
+
import("./rules/state.js").State.WARN,
|
|
240
241
|
{
|
|
241
242
|
readonly allowRegexCharacters: readonly [
|
|
242
243
|
"-"
|
|
243
244
|
];
|
|
244
245
|
}
|
|
245
246
|
];
|
|
246
|
-
readonly "no-useless-rename": import("./rules/state.js").State.
|
|
247
|
-
readonly "no-useless-return": import("./rules/state.js").State.
|
|
248
|
-
readonly "no-var": import("./rules/state.js").State.
|
|
247
|
+
readonly "no-useless-rename": import("./rules/state.js").State.WARN;
|
|
248
|
+
readonly "no-useless-return": import("./rules/state.js").State.WARN;
|
|
249
|
+
readonly "no-var": import("./rules/state.js").State.WARN;
|
|
249
250
|
readonly "no-void": readonly [
|
|
250
251
|
import("./rules/state.js").State.ON,
|
|
251
252
|
{
|
|
@@ -253,9 +254,9 @@ declare const _default: {
|
|
|
253
254
|
}
|
|
254
255
|
];
|
|
255
256
|
readonly "no-with": import("./rules/state.js").State.ON;
|
|
256
|
-
readonly "object-shorthand": import("./rules/state.js").State.
|
|
257
|
+
readonly "object-shorthand": import("./rules/state.js").State.WARN;
|
|
257
258
|
readonly "one-var": readonly [
|
|
258
|
-
import("./rules/state.js").State.
|
|
259
|
+
import("./rules/state.js").State.WARN,
|
|
259
260
|
{
|
|
260
261
|
readonly var: "consecutive";
|
|
261
262
|
readonly let: "consecutive";
|
|
@@ -265,36 +266,27 @@ declare const _default: {
|
|
|
265
266
|
readonly separateRequires: true;
|
|
266
267
|
}
|
|
267
268
|
];
|
|
268
|
-
readonly "operator-assignment": import("./rules/state.js").State.
|
|
269
|
-
readonly "prefer-arrow-callback": import("./rules/state.js").State.
|
|
269
|
+
readonly "operator-assignment": import("./rules/state.js").State.WARN;
|
|
270
|
+
readonly "prefer-arrow-callback": import("./rules/state.js").State.WARN;
|
|
270
271
|
readonly "prefer-const": readonly [
|
|
271
|
-
import("./rules/state.js").State.
|
|
272
|
+
import("./rules/state.js").State.WARN,
|
|
272
273
|
{
|
|
273
274
|
readonly destructuring: "all";
|
|
274
275
|
}
|
|
275
276
|
];
|
|
276
|
-
readonly "prefer-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
readonly object: false;
|
|
282
|
-
};
|
|
283
|
-
}
|
|
284
|
-
];
|
|
285
|
-
readonly "prefer-exponentiation-operator": import("./rules/state.js").State.ON;
|
|
286
|
-
readonly "prefer-numeric-literals": import("./rules/state.js").State.ON;
|
|
287
|
-
readonly "prefer-object-has-own": import("./rules/state.js").State.ON;
|
|
288
|
-
readonly "prefer-object-spread": import("./rules/state.js").State.ON;
|
|
289
|
-
readonly "prefer-promise-reject-errors": import("./rules/state.js").State.ON;
|
|
277
|
+
readonly "prefer-exponentiation-operator": import("./rules/state.js").State.WARN;
|
|
278
|
+
readonly "prefer-numeric-literals": import("./rules/state.js").State.WARN;
|
|
279
|
+
readonly "prefer-object-has-own": import("./rules/state.js").State.WARN;
|
|
280
|
+
readonly "prefer-object-spread": import("./rules/state.js").State.WARN;
|
|
281
|
+
readonly "prefer-promise-reject-errors": import("./rules/state.js").State.WARN;
|
|
290
282
|
readonly "prefer-regex-literals": readonly [
|
|
291
|
-
import("./rules/state.js").State.
|
|
283
|
+
import("./rules/state.js").State.WARN,
|
|
292
284
|
{
|
|
293
285
|
readonly disallowRedundantWrapping: true;
|
|
294
286
|
}
|
|
295
287
|
];
|
|
296
|
-
readonly "prefer-rest-params": import("./rules/state.js").State.
|
|
297
|
-
readonly "prefer-spread": import("./rules/state.js").State.
|
|
288
|
+
readonly "prefer-rest-params": import("./rules/state.js").State.WARN;
|
|
289
|
+
readonly "prefer-spread": import("./rules/state.js").State.WARN;
|
|
298
290
|
readonly "preserve-caught-error": readonly [
|
|
299
291
|
import("./rules/state.js").State.ON,
|
|
300
292
|
{
|
|
@@ -308,15 +300,16 @@ declare const _default: {
|
|
|
308
300
|
readonly "require-await": import("./rules/state.js").State.ON;
|
|
309
301
|
readonly "require-unicode-regexp": import("./rules/state.js").State.ON;
|
|
310
302
|
readonly "require-yield": import("./rules/state.js").State.ON;
|
|
311
|
-
readonly "vars-on-top": import("./rules/state.js").State.
|
|
312
|
-
readonly yoda: import("./rules/state.js").State.
|
|
303
|
+
readonly "vars-on-top": import("./rules/state.js").State.WARN;
|
|
304
|
+
readonly yoda: import("./rules/state.js").State.WARN;
|
|
305
|
+
readonly "unicode-bom": import("./rules/state.js").State.WARN;
|
|
313
306
|
};
|
|
314
307
|
} | {
|
|
315
308
|
rules: {
|
|
316
|
-
readonly "stylistic/array-bracket-newline": import("./rules/state.js").State.
|
|
317
|
-
readonly "stylistic/array-bracket-spacing": import("./rules/state.js").State.
|
|
309
|
+
readonly "stylistic/array-bracket-newline": import("./rules/state.js").State.WARN;
|
|
310
|
+
readonly "stylistic/array-bracket-spacing": import("./rules/state.js").State.WARN;
|
|
318
311
|
readonly "stylistic/array-element-newline": readonly [
|
|
319
|
-
import("./rules/state.js").State.
|
|
312
|
+
import("./rules/state.js").State.WARN,
|
|
320
313
|
{
|
|
321
314
|
readonly consistent: true;
|
|
322
315
|
readonly multiline: true;
|
|
@@ -324,44 +317,44 @@ declare const _default: {
|
|
|
324
317
|
}
|
|
325
318
|
];
|
|
326
319
|
readonly "stylistic/arrow-parens": readonly [
|
|
327
|
-
import("./rules/state.js").State.
|
|
320
|
+
import("./rules/state.js").State.WARN,
|
|
328
321
|
"as-needed"
|
|
329
322
|
];
|
|
330
|
-
readonly "stylistic/arrow-spacing": import("./rules/state.js").State.
|
|
331
|
-
readonly "stylistic/block-spacing": import("./rules/state.js").State.
|
|
323
|
+
readonly "stylistic/arrow-spacing": import("./rules/state.js").State.WARN;
|
|
324
|
+
readonly "stylistic/block-spacing": import("./rules/state.js").State.WARN;
|
|
332
325
|
readonly "stylistic/brace-style": readonly [
|
|
333
|
-
import("./rules/state.js").State.
|
|
326
|
+
import("./rules/state.js").State.WARN,
|
|
334
327
|
"stroustrup",
|
|
335
328
|
{
|
|
336
329
|
readonly allowSingleLine: true;
|
|
337
330
|
}
|
|
338
331
|
];
|
|
339
332
|
readonly "stylistic/comma-dangle": readonly [
|
|
340
|
-
import("./rules/state.js").State.
|
|
333
|
+
import("./rules/state.js").State.WARN,
|
|
341
334
|
"always-multiline"
|
|
342
335
|
];
|
|
343
|
-
readonly "stylistic/comma-spacing": import("./rules/state.js").State.
|
|
344
|
-
readonly "stylistic/comma-style": import("./rules/state.js").State.
|
|
345
|
-
readonly "stylistic/computed-property-spacing": import("./rules/state.js").State.
|
|
346
|
-
readonly "stylistic/curly-newline": import("./rules/state.js").State.
|
|
336
|
+
readonly "stylistic/comma-spacing": import("./rules/state.js").State.WARN;
|
|
337
|
+
readonly "stylistic/comma-style": import("./rules/state.js").State.WARN;
|
|
338
|
+
readonly "stylistic/computed-property-spacing": import("./rules/state.js").State.WARN;
|
|
339
|
+
readonly "stylistic/curly-newline": import("./rules/state.js").State.WARN;
|
|
347
340
|
readonly "stylistic/dot-location": readonly [
|
|
348
|
-
import("./rules/state.js").State.
|
|
341
|
+
import("./rules/state.js").State.WARN,
|
|
349
342
|
"property"
|
|
350
343
|
];
|
|
351
|
-
readonly "stylistic/eol-last": import("./rules/state.js").State.
|
|
344
|
+
readonly "stylistic/eol-last": import("./rules/state.js").State.WARN;
|
|
352
345
|
readonly "stylistic/function-call-argument-newline": readonly [
|
|
353
|
-
import("./rules/state.js").State.
|
|
346
|
+
import("./rules/state.js").State.WARN,
|
|
354
347
|
"consistent"
|
|
355
348
|
];
|
|
356
|
-
readonly "stylistic/function-call-spacing": import("./rules/state.js").State.
|
|
349
|
+
readonly "stylistic/function-call-spacing": import("./rules/state.js").State.WARN;
|
|
357
350
|
readonly "stylistic/function-paren-newline": readonly [
|
|
358
|
-
import("./rules/state.js").State.
|
|
351
|
+
import("./rules/state.js").State.WARN,
|
|
359
352
|
"multiline-arguments"
|
|
360
353
|
];
|
|
361
|
-
readonly "stylistic/generator-star-spacing": import("./rules/state.js").State.
|
|
362
|
-
readonly "stylistic/implicit-arrow-linebreak": import("./rules/state.js").State.
|
|
354
|
+
readonly "stylistic/generator-star-spacing": import("./rules/state.js").State.WARN;
|
|
355
|
+
readonly "stylistic/implicit-arrow-linebreak": import("./rules/state.js").State.WARN;
|
|
363
356
|
readonly "stylistic/indent": readonly [
|
|
364
|
-
import("./rules/state.js").State.
|
|
357
|
+
import("./rules/state.js").State.WARN,
|
|
365
358
|
2,
|
|
366
359
|
{
|
|
367
360
|
readonly assignmentOperator: 0;
|
|
@@ -375,14 +368,14 @@ declare const _default: {
|
|
|
375
368
|
}
|
|
376
369
|
];
|
|
377
370
|
readonly "stylistic/indent-binary-ops": readonly [
|
|
378
|
-
import("./rules/state.js").State.
|
|
371
|
+
import("./rules/state.js").State.WARN,
|
|
379
372
|
2
|
|
380
373
|
];
|
|
381
|
-
readonly "stylistic/key-spacing": import("./rules/state.js").State.
|
|
382
|
-
readonly "stylistic/keyword-spacing": import("./rules/state.js").State.
|
|
383
|
-
readonly "stylistic/linebreak-style": import("./rules/state.js").State.
|
|
374
|
+
readonly "stylistic/key-spacing": import("./rules/state.js").State.WARN;
|
|
375
|
+
readonly "stylistic/keyword-spacing": import("./rules/state.js").State.WARN;
|
|
376
|
+
readonly "stylistic/linebreak-style": import("./rules/state.js").State.WARN;
|
|
384
377
|
readonly "stylistic/lines-between-class-members": readonly [
|
|
385
|
-
import("./rules/state.js").State.
|
|
378
|
+
import("./rules/state.js").State.WARN,
|
|
386
379
|
{
|
|
387
380
|
readonly enforce: readonly [
|
|
388
381
|
{
|
|
@@ -404,7 +397,7 @@ declare const _default: {
|
|
|
404
397
|
}
|
|
405
398
|
];
|
|
406
399
|
readonly "stylistic/max-len": readonly [
|
|
407
|
-
import("./rules/state.js").State.
|
|
400
|
+
import("./rules/state.js").State.WARN,
|
|
408
401
|
{
|
|
409
402
|
readonly code: 300;
|
|
410
403
|
readonly ignoreComments: true;
|
|
@@ -415,19 +408,19 @@ declare const _default: {
|
|
|
415
408
|
readonly ignoreRegExpLiterals: true;
|
|
416
409
|
}
|
|
417
410
|
];
|
|
418
|
-
readonly "stylistic/max-statements-per-line": import("./rules/state.js").State.
|
|
419
|
-
readonly "stylistic/member-delimiter-style": import("./rules/state.js").State.
|
|
411
|
+
readonly "stylistic/max-statements-per-line": import("./rules/state.js").State.WARN;
|
|
412
|
+
readonly "stylistic/member-delimiter-style": import("./rules/state.js").State.WARN;
|
|
420
413
|
readonly "stylistic/multiline-ternary": readonly [
|
|
421
|
-
import("./rules/state.js").State.
|
|
414
|
+
import("./rules/state.js").State.WARN,
|
|
422
415
|
"always-multiline"
|
|
423
416
|
];
|
|
424
|
-
readonly "stylistic/newline-per-chained-call": import("./rules/state.js").State.
|
|
425
|
-
readonly "stylistic/no-extra-parens": import("./rules/state.js").State.
|
|
426
|
-
readonly "stylistic/no-extra-semi": import("./rules/state.js").State.
|
|
427
|
-
readonly "stylistic/no-floating-decimal": import("./rules/state.js").State.
|
|
428
|
-
readonly "stylistic/no-mixed-spaces-and-tabs": import("./rules/state.js").State.
|
|
417
|
+
readonly "stylistic/newline-per-chained-call": import("./rules/state.js").State.WARN;
|
|
418
|
+
readonly "stylistic/no-extra-parens": import("./rules/state.js").State.WARN;
|
|
419
|
+
readonly "stylistic/no-extra-semi": import("./rules/state.js").State.WARN;
|
|
420
|
+
readonly "stylistic/no-floating-decimal": import("./rules/state.js").State.WARN;
|
|
421
|
+
readonly "stylistic/no-mixed-spaces-and-tabs": import("./rules/state.js").State.WARN;
|
|
429
422
|
readonly "stylistic/no-multi-spaces": readonly [
|
|
430
|
-
import("./rules/state.js").State.
|
|
423
|
+
import("./rules/state.js").State.WARN,
|
|
431
424
|
{
|
|
432
425
|
readonly exceptions: {
|
|
433
426
|
readonly Property: false;
|
|
@@ -436,22 +429,22 @@ declare const _default: {
|
|
|
436
429
|
}
|
|
437
430
|
];
|
|
438
431
|
readonly "stylistic/no-multiple-empty-lines": readonly [
|
|
439
|
-
import("./rules/state.js").State.
|
|
432
|
+
import("./rules/state.js").State.WARN,
|
|
440
433
|
{
|
|
441
434
|
readonly max: 1;
|
|
442
435
|
readonly maxBOF: 0;
|
|
443
436
|
readonly maxEOF: 0;
|
|
444
437
|
}
|
|
445
438
|
];
|
|
446
|
-
readonly "stylistic/no-tabs": import("./rules/state.js").State.
|
|
447
|
-
readonly "stylistic/no-trailing-spaces": import("./rules/state.js").State.
|
|
448
|
-
readonly "stylistic/no-whitespace-before-property": import("./rules/state.js").State.
|
|
439
|
+
readonly "stylistic/no-tabs": import("./rules/state.js").State.WARN;
|
|
440
|
+
readonly "stylistic/no-trailing-spaces": import("./rules/state.js").State.WARN;
|
|
441
|
+
readonly "stylistic/no-whitespace-before-property": import("./rules/state.js").State.WARN;
|
|
449
442
|
readonly "stylistic/nonblock-statement-body-position": readonly [
|
|
450
|
-
import("./rules/state.js").State.
|
|
443
|
+
import("./rules/state.js").State.WARN,
|
|
451
444
|
"below"
|
|
452
445
|
];
|
|
453
446
|
readonly "stylistic/object-curly-newline": readonly [
|
|
454
|
-
import("./rules/state.js").State.
|
|
447
|
+
import("./rules/state.js").State.WARN,
|
|
455
448
|
{
|
|
456
449
|
readonly consistent: true;
|
|
457
450
|
readonly multiline: true;
|
|
@@ -459,59 +452,59 @@ declare const _default: {
|
|
|
459
452
|
}
|
|
460
453
|
];
|
|
461
454
|
readonly "stylistic/object-curly-spacing": readonly [
|
|
462
|
-
import("./rules/state.js").State.
|
|
455
|
+
import("./rules/state.js").State.WARN,
|
|
463
456
|
"always",
|
|
464
457
|
{
|
|
465
458
|
readonly emptyObjects: "never";
|
|
466
459
|
}
|
|
467
460
|
];
|
|
468
|
-
readonly "stylistic/object-property-newline": import("./rules/state.js").State.
|
|
461
|
+
readonly "stylistic/object-property-newline": import("./rules/state.js").State.WARN;
|
|
469
462
|
readonly "stylistic/one-var-declaration-per-line": readonly [
|
|
470
|
-
import("./rules/state.js").State.
|
|
463
|
+
import("./rules/state.js").State.WARN,
|
|
471
464
|
"always"
|
|
472
465
|
];
|
|
473
466
|
readonly "stylistic/operator-linebreak": readonly [
|
|
474
|
-
import("./rules/state.js").State.
|
|
467
|
+
import("./rules/state.js").State.WARN,
|
|
475
468
|
"before"
|
|
476
469
|
];
|
|
477
470
|
readonly "stylistic/padded-blocks": readonly [
|
|
478
|
-
import("./rules/state.js").State.
|
|
471
|
+
import("./rules/state.js").State.WARN,
|
|
479
472
|
"never",
|
|
480
473
|
{
|
|
481
474
|
readonly allowSingleLineBlocks: true;
|
|
482
475
|
}
|
|
483
476
|
];
|
|
484
477
|
readonly "stylistic/quote-props": readonly [
|
|
485
|
-
import("./rules/state.js").State.
|
|
478
|
+
import("./rules/state.js").State.WARN,
|
|
486
479
|
"as-needed",
|
|
487
480
|
{
|
|
488
481
|
readonly keywords: true;
|
|
489
482
|
}
|
|
490
483
|
];
|
|
491
484
|
readonly "stylistic/quotes": readonly [
|
|
492
|
-
import("./rules/state.js").State.
|
|
485
|
+
import("./rules/state.js").State.WARN,
|
|
493
486
|
"double",
|
|
494
487
|
{
|
|
495
488
|
readonly avoidEscape: true;
|
|
496
489
|
readonly allowTemplateLiterals: "always";
|
|
497
490
|
}
|
|
498
491
|
];
|
|
499
|
-
readonly "stylistic/rest-spread-spacing": import("./rules/state.js").State.
|
|
500
|
-
readonly "stylistic/semi": import("./rules/state.js").State.
|
|
501
|
-
readonly "stylistic/semi-spacing": import("./rules/state.js").State.
|
|
502
|
-
readonly "stylistic/semi-style": import("./rules/state.js").State.
|
|
503
|
-
readonly "stylistic/space-before-blocks": import("./rules/state.js").State.
|
|
492
|
+
readonly "stylistic/rest-spread-spacing": import("./rules/state.js").State.WARN;
|
|
493
|
+
readonly "stylistic/semi": import("./rules/state.js").State.WARN;
|
|
494
|
+
readonly "stylistic/semi-spacing": import("./rules/state.js").State.WARN;
|
|
495
|
+
readonly "stylistic/semi-style": import("./rules/state.js").State.WARN;
|
|
496
|
+
readonly "stylistic/space-before-blocks": import("./rules/state.js").State.WARN;
|
|
504
497
|
readonly "stylistic/space-before-function-paren": readonly [
|
|
505
|
-
import("./rules/state.js").State.
|
|
498
|
+
import("./rules/state.js").State.WARN,
|
|
506
499
|
{
|
|
507
500
|
readonly named: "never";
|
|
508
501
|
}
|
|
509
502
|
];
|
|
510
|
-
readonly "stylistic/space-in-parens": import("./rules/state.js").State.
|
|
511
|
-
readonly "stylistic/space-infix-ops": import("./rules/state.js").State.
|
|
512
|
-
readonly "stylistic/space-unary-ops": import("./rules/state.js").State.
|
|
503
|
+
readonly "stylistic/space-in-parens": import("./rules/state.js").State.WARN;
|
|
504
|
+
readonly "stylistic/space-infix-ops": import("./rules/state.js").State.WARN;
|
|
505
|
+
readonly "stylistic/space-unary-ops": import("./rules/state.js").State.WARN;
|
|
513
506
|
readonly "stylistic/spaced-comment": readonly [
|
|
514
|
-
import("./rules/state.js").State.
|
|
507
|
+
import("./rules/state.js").State.WARN,
|
|
515
508
|
"always",
|
|
516
509
|
{
|
|
517
510
|
readonly line: {
|
|
@@ -545,11 +538,11 @@ declare const _default: {
|
|
|
545
538
|
};
|
|
546
539
|
}
|
|
547
540
|
];
|
|
548
|
-
readonly "stylistic/switch-colon-spacing": import("./rules/state.js").State.
|
|
549
|
-
readonly "stylistic/template-curly-spacing": import("./rules/state.js").State.
|
|
550
|
-
readonly "stylistic/template-tag-spacing": import("./rules/state.js").State.
|
|
541
|
+
readonly "stylistic/switch-colon-spacing": import("./rules/state.js").State.WARN;
|
|
542
|
+
readonly "stylistic/template-curly-spacing": import("./rules/state.js").State.WARN;
|
|
543
|
+
readonly "stylistic/template-tag-spacing": import("./rules/state.js").State.WARN;
|
|
551
544
|
readonly "stylistic/type-annotation-spacing": readonly [
|
|
552
|
-
import("./rules/state.js").State.
|
|
545
|
+
import("./rules/state.js").State.WARN,
|
|
553
546
|
{
|
|
554
547
|
readonly before: true;
|
|
555
548
|
readonly after: true;
|
|
@@ -561,17 +554,17 @@ declare const _default: {
|
|
|
561
554
|
};
|
|
562
555
|
}
|
|
563
556
|
];
|
|
564
|
-
readonly "stylistic/type-generic-spacing": import("./rules/state.js").State.
|
|
565
|
-
readonly "stylistic/type-named-tuple-spacing": import("./rules/state.js").State.
|
|
557
|
+
readonly "stylistic/type-generic-spacing": import("./rules/state.js").State.WARN;
|
|
558
|
+
readonly "stylistic/type-named-tuple-spacing": import("./rules/state.js").State.WARN;
|
|
566
559
|
readonly "stylistic/wrap-iife": readonly [
|
|
567
|
-
import("./rules/state.js").State.
|
|
560
|
+
import("./rules/state.js").State.WARN,
|
|
568
561
|
"inside",
|
|
569
562
|
{
|
|
570
563
|
readonly functionPrototypeMethods: true;
|
|
571
564
|
}
|
|
572
565
|
];
|
|
573
|
-
readonly "stylistic/wrap-regex": import("./rules/state.js").State.
|
|
574
|
-
readonly "stylistic/yield-star-spacing": import("./rules/state.js").State.
|
|
566
|
+
readonly "stylistic/wrap-regex": import("./rules/state.js").State.WARN;
|
|
567
|
+
readonly "stylistic/yield-star-spacing": import("./rules/state.js").State.WARN;
|
|
575
568
|
};
|
|
576
569
|
})[];
|
|
577
570
|
ts: ({
|
|
@@ -599,21 +592,21 @@ declare const _default: {
|
|
|
599
592
|
} | {
|
|
600
593
|
rules: {
|
|
601
594
|
readonly "ts/await-thenable": import("./rules/state.js").State.ON;
|
|
602
|
-
readonly "ts/ban-ts-comment": import("./rules/state.js").State.
|
|
603
|
-
readonly "ts/ban-tslint-comment": import("./rules/state.js").State.
|
|
604
|
-
readonly "ts/class-literal-property-style": import("./rules/state.js").State.
|
|
605
|
-
readonly "ts/consistent-generic-constructors": import("./rules/state.js").State.
|
|
595
|
+
readonly "ts/ban-ts-comment": import("./rules/state.js").State.WARN;
|
|
596
|
+
readonly "ts/ban-tslint-comment": import("./rules/state.js").State.WARN;
|
|
597
|
+
readonly "ts/class-literal-property-style": import("./rules/state.js").State.WARN;
|
|
598
|
+
readonly "ts/consistent-generic-constructors": import("./rules/state.js").State.WARN;
|
|
606
599
|
readonly "ts/consistent-type-assertions": readonly [
|
|
607
|
-
import("./rules/state.js").State.
|
|
600
|
+
import("./rules/state.js").State.WARN,
|
|
608
601
|
{
|
|
609
602
|
readonly arrayLiteralTypeAssertions: "never";
|
|
610
603
|
readonly objectLiteralTypeAssertions: "never";
|
|
611
604
|
}
|
|
612
605
|
];
|
|
613
|
-
readonly "ts/consistent-type-exports": import("./rules/state.js").State.
|
|
614
|
-
readonly "ts/consistent-type-imports": import("./rules/state.js").State.
|
|
606
|
+
readonly "ts/consistent-type-exports": import("./rules/state.js").State.WARN;
|
|
607
|
+
readonly "ts/consistent-type-imports": import("./rules/state.js").State.WARN;
|
|
615
608
|
readonly "ts/explicit-member-accessibility": readonly [
|
|
616
|
-
import("./rules/state.js").State.
|
|
609
|
+
import("./rules/state.js").State.WARN,
|
|
617
610
|
{
|
|
618
611
|
readonly overrides: {
|
|
619
612
|
readonly constructors: "no-public";
|
|
@@ -621,14 +614,14 @@ declare const _default: {
|
|
|
621
614
|
}
|
|
622
615
|
];
|
|
623
616
|
readonly "ts/member-ordering": readonly [
|
|
624
|
-
import("./rules/state.js").State.
|
|
617
|
+
import("./rules/state.js").State.WARN,
|
|
625
618
|
{
|
|
626
619
|
readonly default: {
|
|
627
620
|
readonly optionalityOrder: "required-first";
|
|
628
621
|
};
|
|
629
622
|
}
|
|
630
623
|
];
|
|
631
|
-
readonly "ts/method-signature-style": import("./rules/state.js").State.
|
|
624
|
+
readonly "ts/method-signature-style": import("./rules/state.js").State.WARN;
|
|
632
625
|
readonly "ts/no-array-delete": import("./rules/state.js").State.ON;
|
|
633
626
|
readonly "ts/no-base-to-string": import("./rules/state.js").State.ON;
|
|
634
627
|
readonly "ts/no-confusing-non-null-assertion": import("./rules/state.js").State.ON;
|
|
@@ -698,30 +691,30 @@ declare const _default: {
|
|
|
698
691
|
];
|
|
699
692
|
readonly "ts/no-unsafe-return": import("./rules/state.js").State.ON;
|
|
700
693
|
readonly "ts/no-unsafe-unary-minus": import("./rules/state.js").State.ON;
|
|
701
|
-
readonly "ts/no-unused-private-class-members": import("./rules/state.js").State.
|
|
702
|
-
readonly "ts/no-useless-empty-export": import("./rules/state.js").State.
|
|
694
|
+
readonly "ts/no-unused-private-class-members": import("./rules/state.js").State.WARN;
|
|
695
|
+
readonly "ts/no-useless-empty-export": import("./rules/state.js").State.WARN;
|
|
703
696
|
readonly "ts/no-wrapper-object-types": import("./rules/state.js").State.ON;
|
|
704
697
|
readonly "ts/parameter-properties": readonly [
|
|
705
|
-
import("./rules/state.js").State.
|
|
698
|
+
import("./rules/state.js").State.WARN,
|
|
706
699
|
{
|
|
707
700
|
readonly prefer: "parameter-property";
|
|
708
701
|
}
|
|
709
702
|
];
|
|
710
|
-
readonly "ts/prefer-as-const": import("./rules/state.js").State.
|
|
711
|
-
readonly "ts/prefer-find": import("./rules/state.js").State.
|
|
712
|
-
readonly "ts/prefer-for-of": import("./rules/state.js").State.
|
|
713
|
-
readonly "ts/prefer-function-type": import("./rules/state.js").State.
|
|
714
|
-
readonly "ts/prefer-includes": import("./rules/state.js").State.
|
|
715
|
-
readonly "ts/prefer-namespace-keyword": import("./rules/state.js").State.
|
|
703
|
+
readonly "ts/prefer-as-const": import("./rules/state.js").State.WARN;
|
|
704
|
+
readonly "ts/prefer-find": import("./rules/state.js").State.WARN;
|
|
705
|
+
readonly "ts/prefer-for-of": import("./rules/state.js").State.WARN;
|
|
706
|
+
readonly "ts/prefer-function-type": import("./rules/state.js").State.WARN;
|
|
707
|
+
readonly "ts/prefer-includes": import("./rules/state.js").State.WARN;
|
|
708
|
+
readonly "ts/prefer-namespace-keyword": import("./rules/state.js").State.WARN;
|
|
716
709
|
readonly "ts/prefer-nullish-coalescing": readonly [
|
|
717
|
-
import("./rules/state.js").State.
|
|
710
|
+
import("./rules/state.js").State.WARN,
|
|
718
711
|
{
|
|
719
712
|
readonly ignoreMixedLogicalExpressions: true;
|
|
720
713
|
readonly ignorePrimitives: true;
|
|
721
714
|
}
|
|
722
715
|
];
|
|
723
716
|
readonly "ts/prefer-optional-chain": readonly [
|
|
724
|
-
import("./rules/state.js").State.
|
|
717
|
+
import("./rules/state.js").State.WARN,
|
|
725
718
|
{
|
|
726
719
|
readonly checkBigInt: false;
|
|
727
720
|
readonly checkBoolean: false;
|
|
@@ -729,14 +722,13 @@ declare const _default: {
|
|
|
729
722
|
readonly checkString: false;
|
|
730
723
|
}
|
|
731
724
|
];
|
|
732
|
-
readonly "ts/prefer-readonly": import("./rules/state.js").State.
|
|
733
|
-
readonly "ts/prefer-reduce-type-parameter": import("./rules/state.js").State.
|
|
734
|
-
readonly "ts/prefer-regexp-exec": import("./rules/state.js").State.
|
|
735
|
-
readonly "ts/prefer-return-this-type": import("./rules/state.js").State.
|
|
736
|
-
readonly "ts/prefer-string-starts-ends-with": import("./rules/state.js").State.
|
|
725
|
+
readonly "ts/prefer-readonly": import("./rules/state.js").State.WARN;
|
|
726
|
+
readonly "ts/prefer-reduce-type-parameter": import("./rules/state.js").State.WARN;
|
|
727
|
+
readonly "ts/prefer-regexp-exec": import("./rules/state.js").State.WARN;
|
|
728
|
+
readonly "ts/prefer-return-this-type": import("./rules/state.js").State.WARN;
|
|
729
|
+
readonly "ts/prefer-string-starts-ends-with": import("./rules/state.js").State.WARN;
|
|
737
730
|
readonly "ts/promise-function-async": import("./rules/state.js").State.ON;
|
|
738
|
-
readonly "ts/
|
|
739
|
-
readonly "ts/require-array-sort-compare": import("./rules/state.js").State.ON;
|
|
731
|
+
readonly "ts/require-array-sort-compare": import("./rules/state.js").State.WARN;
|
|
740
732
|
readonly "ts/restrict-plus-operands": readonly [
|
|
741
733
|
import("./rules/state.js").State.ON,
|
|
742
734
|
{
|
|
@@ -783,7 +775,7 @@ declare const _default: {
|
|
|
783
775
|
rules: {
|
|
784
776
|
readonly "dot-notation": import("./rules/state.js").State.OFF;
|
|
785
777
|
readonly "ts/dot-notation": readonly [
|
|
786
|
-
import("./rules/state.js").State.
|
|
778
|
+
import("./rules/state.js").State.WARN,
|
|
787
779
|
{
|
|
788
780
|
readonly allowPrivateClassPropertyAccess: true;
|
|
789
781
|
readonly allowProtectedClassPropertyAccess: true;
|
|
@@ -794,27 +786,18 @@ declare const _default: {
|
|
|
794
786
|
readonly "ts/no-implied-eval": import("./rules/state.js").State.ON;
|
|
795
787
|
readonly "no-restricted-imports": import("./rules/state.js").State.OFF;
|
|
796
788
|
readonly "no-unused-vars": import("./rules/state.js").State.OFF;
|
|
797
|
-
readonly "ts/no-unused-vars": import("./rules/state.js").State.
|
|
789
|
+
readonly "ts/no-unused-vars": import("./rules/state.js").State.WARN;
|
|
798
790
|
readonly "no-throw-literal": import("./rules/state.js").State.OFF;
|
|
799
791
|
readonly "ts/only-throw-error": readonly [
|
|
800
|
-
import("./rules/state.js").State.
|
|
792
|
+
import("./rules/state.js").State.WARN,
|
|
801
793
|
{
|
|
802
794
|
readonly allowThrowingAny: false;
|
|
803
795
|
}
|
|
804
796
|
];
|
|
805
797
|
readonly "prefer-destructuring": import("./rules/state.js").State.OFF;
|
|
806
|
-
readonly "ts/prefer-destructuring": readonly [
|
|
807
|
-
import("./rules/state.js").State.ON,
|
|
808
|
-
{
|
|
809
|
-
readonly AssignmentExpression: {
|
|
810
|
-
readonly array: false;
|
|
811
|
-
readonly object: false;
|
|
812
|
-
};
|
|
813
|
-
}
|
|
814
|
-
];
|
|
815
798
|
readonly "prefer-promise-reject-errors": import("./rules/state.js").State.OFF;
|
|
816
799
|
readonly "ts/prefer-promise-reject-errors": readonly [
|
|
817
|
-
import("./rules/state.js").State.
|
|
800
|
+
import("./rules/state.js").State.WARN,
|
|
818
801
|
{
|
|
819
802
|
readonly allowThrowingUnknown: true;
|
|
820
803
|
}
|
|
@@ -863,7 +846,7 @@ declare const _default: {
|
|
|
863
846
|
readonly "svelte/no-at-html-tags": import("./rules/state.js").State.ON;
|
|
864
847
|
readonly "svelte/no-target-blank": import("./rules/state.js").State.ON;
|
|
865
848
|
readonly "svelte/block-lang": readonly [
|
|
866
|
-
import("./rules/state.js").State.
|
|
849
|
+
import("./rules/state.js").State.WARN,
|
|
867
850
|
{
|
|
868
851
|
readonly script: readonly [
|
|
869
852
|
"ts"
|
|
@@ -884,64 +867,64 @@ declare const _default: {
|
|
|
884
867
|
readonly "svelte/no-svelte-internal": import("./rules/state.js").State.ON;
|
|
885
868
|
readonly "svelte/no-unnecessary-state-wrap": import("./rules/state.js").State.ON;
|
|
886
869
|
readonly "svelte/no-unused-props": readonly [
|
|
887
|
-
import("./rules/state.js").State.
|
|
870
|
+
import("./rules/state.js").State.WARN,
|
|
888
871
|
{
|
|
889
872
|
readonly checkImportedTypes: true;
|
|
890
873
|
}
|
|
891
874
|
];
|
|
892
|
-
readonly "svelte/no-unused-svelte-ignore": import("./rules/state.js").State.
|
|
893
|
-
readonly "svelte/no-useless-children-snippet": import("./rules/state.js").State.
|
|
894
|
-
readonly "svelte/no-useless-mustaches": import("./rules/state.js").State.
|
|
875
|
+
readonly "svelte/no-unused-svelte-ignore": import("./rules/state.js").State.WARN;
|
|
876
|
+
readonly "svelte/no-useless-children-snippet": import("./rules/state.js").State.WARN;
|
|
877
|
+
readonly "svelte/no-useless-mustaches": import("./rules/state.js").State.WARN;
|
|
895
878
|
readonly "svelte/prefer-const": readonly [
|
|
896
|
-
import("./rules/state.js").State.
|
|
879
|
+
import("./rules/state.js").State.WARN,
|
|
897
880
|
{
|
|
898
881
|
readonly destructuring: "all";
|
|
899
882
|
}
|
|
900
883
|
];
|
|
901
|
-
readonly "svelte/prefer-destructured-store-props": import("./rules/state.js").State.
|
|
902
|
-
readonly "svelte/prefer-writable-derived": import("./rules/state.js").State.
|
|
884
|
+
readonly "svelte/prefer-destructured-store-props": import("./rules/state.js").State.WARN;
|
|
885
|
+
readonly "svelte/prefer-writable-derived": import("./rules/state.js").State.WARN;
|
|
903
886
|
readonly "svelte/require-each-key": import("./rules/state.js").State.ON;
|
|
904
887
|
readonly "svelte/require-event-dispatcher-types": import("./rules/state.js").State.ON;
|
|
905
888
|
readonly "svelte/require-optimized-style-attribute": import("./rules/state.js").State.ON;
|
|
906
889
|
readonly "svelte/require-stores-init": import("./rules/state.js").State.ON;
|
|
907
890
|
readonly "svelte/valid-each-key": import("./rules/state.js").State.ON;
|
|
908
891
|
readonly "svelte/consistent-selector-style": readonly [
|
|
909
|
-
import("./rules/state.js").State.
|
|
892
|
+
import("./rules/state.js").State.WARN,
|
|
910
893
|
{
|
|
911
894
|
readonly checkGlobal: true;
|
|
912
895
|
}
|
|
913
896
|
];
|
|
914
897
|
readonly "svelte/derived-has-same-inputs-outputs": import("./rules/state.js").State.ON;
|
|
915
898
|
readonly "svelte/first-attribute-linebreak": readonly [
|
|
916
|
-
import("./rules/state.js").State.
|
|
899
|
+
import("./rules/state.js").State.WARN,
|
|
917
900
|
{
|
|
918
901
|
readonly singleline: "below";
|
|
919
902
|
}
|
|
920
903
|
];
|
|
921
|
-
readonly "svelte/html-closing-bracket-new-line": import("./rules/state.js").State.
|
|
904
|
+
readonly "svelte/html-closing-bracket-new-line": import("./rules/state.js").State.WARN;
|
|
922
905
|
readonly "svelte/html-closing-bracket-spacing": readonly [
|
|
923
|
-
import("./rules/state.js").State.
|
|
906
|
+
import("./rules/state.js").State.WARN,
|
|
924
907
|
{
|
|
925
908
|
readonly selfClosingTag: "never";
|
|
926
909
|
}
|
|
927
910
|
];
|
|
928
|
-
readonly "svelte/html-self-closing": import("./rules/state.js").State.
|
|
929
|
-
readonly "svelte/indent": import("./rules/state.js").State.
|
|
930
|
-
readonly "svelte/max-attributes-per-line": import("./rules/state.js").State.
|
|
931
|
-
readonly "svelte/mustache-spacing": import("./rules/state.js").State.
|
|
932
|
-
readonly "svelte/no-extra-reactive-curlies": import("./rules/state.js").State.
|
|
933
|
-
readonly "svelte/no-spaces-around-equal-signs-in-attribute": import("./rules/state.js").State.
|
|
911
|
+
readonly "svelte/html-self-closing": import("./rules/state.js").State.WARN;
|
|
912
|
+
readonly "svelte/indent": import("./rules/state.js").State.WARN;
|
|
913
|
+
readonly "svelte/max-attributes-per-line": import("./rules/state.js").State.WARN;
|
|
914
|
+
readonly "svelte/mustache-spacing": import("./rules/state.js").State.WARN;
|
|
915
|
+
readonly "svelte/no-extra-reactive-curlies": import("./rules/state.js").State.WARN;
|
|
916
|
+
readonly "svelte/no-spaces-around-equal-signs-in-attribute": import("./rules/state.js").State.WARN;
|
|
934
917
|
readonly "svelte/prefer-class-directive": readonly [
|
|
935
|
-
import("./rules/state.js").State.
|
|
918
|
+
import("./rules/state.js").State.WARN,
|
|
936
919
|
{
|
|
937
920
|
readonly prefer: "empty";
|
|
938
921
|
}
|
|
939
922
|
];
|
|
940
|
-
readonly "svelte/prefer-style-directive": import("./rules/state.js").State.
|
|
923
|
+
readonly "svelte/prefer-style-directive": import("./rules/state.js").State.WARN;
|
|
941
924
|
readonly "svelte/require-event-prefix": import("./rules/state.js").State.ON;
|
|
942
|
-
readonly "svelte/shorthand-attribute": import("./rules/state.js").State.
|
|
943
|
-
readonly "svelte/shorthand-directive": import("./rules/state.js").State.
|
|
944
|
-
readonly "svelte/spaced-html-comment": import("./rules/state.js").State.
|
|
925
|
+
readonly "svelte/shorthand-attribute": import("./rules/state.js").State.WARN;
|
|
926
|
+
readonly "svelte/shorthand-directive": import("./rules/state.js").State.WARN;
|
|
927
|
+
readonly "svelte/spaced-html-comment": import("./rules/state.js").State.WARN;
|
|
945
928
|
readonly "svelte/no-export-load-in-svelte-module-in-kit-pages": import("./rules/state.js").State.ON;
|
|
946
929
|
readonly "svelte/no-navigation-without-resolve": import("./rules/state.js").State.ON;
|
|
947
930
|
readonly "svelte/valid-prop-names-in-kit-pages": import("./rules/state.js").State.ON;
|
|
@@ -956,52 +939,52 @@ declare const _default: {
|
|
|
956
939
|
"both"
|
|
957
940
|
];
|
|
958
941
|
readonly "stylistic/no-trailing-spaces": import("./rules/state.js").State.OFF;
|
|
959
|
-
readonly "svelte/no-trailing-spaces": import("./rules/state.js").State.
|
|
942
|
+
readonly "svelte/no-trailing-spaces": import("./rules/state.js").State.WARN;
|
|
960
943
|
};
|
|
961
944
|
})[];
|
|
962
945
|
html: {
|
|
963
946
|
rules: {
|
|
964
|
-
readonly "html/no-duplicate-attrs": import("./rules/state.js").State.
|
|
965
|
-
readonly "html/no-duplicate-class": import("./rules/state.js").State.
|
|
966
|
-
readonly "html/no-duplicate-id": import("./rules/state.js").State.
|
|
967
|
-
readonly "html/no-duplicate-in-head": import("./rules/state.js").State.
|
|
968
|
-
readonly "html/no-ineffective-attrs": import("./rules/state.js").State.
|
|
969
|
-
readonly "html/no-invalid-entity": import("./rules/state.js").State.
|
|
970
|
-
readonly "html/no-nested-interactive": import("./rules/state.js").State.
|
|
971
|
-
readonly "html/no-obsolete-tags": import("./rules/state.js").State.
|
|
972
|
-
readonly "html/no-target-blank": import("./rules/state.js").State.
|
|
973
|
-
readonly "html/no-whitespace-only-children": import("./rules/state.js").State.
|
|
974
|
-
readonly "html/require-button-type": import("./rules/state.js").State.
|
|
975
|
-
readonly "html/require-closing-tags": import("./rules/state.js").State.
|
|
976
|
-
readonly "html/require-doctype": import("./rules/state.js").State.
|
|
977
|
-
readonly "html/require-li-container": import("./rules/state.js").State.
|
|
978
|
-
readonly "html/require-meta-charset": import("./rules/state.js").State.
|
|
979
|
-
readonly "html/use-baseline": import("./rules/state.js").State.
|
|
980
|
-
readonly "html/no-multiple-h1": import("./rules/state.js").State.
|
|
981
|
-
readonly "html/require-lang": import("./rules/state.js").State.
|
|
982
|
-
readonly "html/no-abstract-roles": import("./rules/state.js").State.
|
|
983
|
-
readonly "html/no-accesskey-attrs": import("./rules/state.js").State.
|
|
984
|
-
readonly "html/no-aria-hidden-body": import("./rules/state.js").State.
|
|
985
|
-
readonly "html/no-aria-hidden-on-focusable": import("./rules/state.js").State.
|
|
986
|
-
readonly "html/no-empty-headings": import("./rules/state.js").State.
|
|
987
|
-
readonly "html/no-heading-inside-button": import("./rules/state.js").State.
|
|
988
|
-
readonly "html/no-invalid-role": import("./rules/state.js").State.
|
|
989
|
-
readonly "html/no-non-scalable-viewport": import("./rules/state.js").State.
|
|
990
|
-
readonly "html/no-positive-tabindex": import("./rules/state.js").State.
|
|
991
|
-
readonly "html/no-skip-heading-levels": import("./rules/state.js").State.
|
|
992
|
-
readonly "html/require-form-method": import("./rules/state.js").State.
|
|
993
|
-
readonly "html/require-frame-title": import("./rules/state.js").State.
|
|
994
|
-
readonly "html/require-img-alt": import("./rules/state.js").State.
|
|
995
|
-
readonly "html/require-input-label": import("./rules/state.js").State.
|
|
996
|
-
readonly "html/require-meta-viewport": import("./rules/state.js").State.
|
|
947
|
+
readonly "html/no-duplicate-attrs": import("./rules/state.js").State.WARN;
|
|
948
|
+
readonly "html/no-duplicate-class": import("./rules/state.js").State.WARN;
|
|
949
|
+
readonly "html/no-duplicate-id": import("./rules/state.js").State.WARN;
|
|
950
|
+
readonly "html/no-duplicate-in-head": import("./rules/state.js").State.WARN;
|
|
951
|
+
readonly "html/no-ineffective-attrs": import("./rules/state.js").State.WARN;
|
|
952
|
+
readonly "html/no-invalid-entity": import("./rules/state.js").State.WARN;
|
|
953
|
+
readonly "html/no-nested-interactive": import("./rules/state.js").State.WARN;
|
|
954
|
+
readonly "html/no-obsolete-tags": import("./rules/state.js").State.WARN;
|
|
955
|
+
readonly "html/no-target-blank": import("./rules/state.js").State.WARN;
|
|
956
|
+
readonly "html/no-whitespace-only-children": import("./rules/state.js").State.WARN;
|
|
957
|
+
readonly "html/require-button-type": import("./rules/state.js").State.WARN;
|
|
958
|
+
readonly "html/require-closing-tags": import("./rules/state.js").State.WARN;
|
|
959
|
+
readonly "html/require-doctype": import("./rules/state.js").State.WARN;
|
|
960
|
+
readonly "html/require-li-container": import("./rules/state.js").State.WARN;
|
|
961
|
+
readonly "html/require-meta-charset": import("./rules/state.js").State.WARN;
|
|
962
|
+
readonly "html/use-baseline": import("./rules/state.js").State.WARN;
|
|
963
|
+
readonly "html/no-multiple-h1": import("./rules/state.js").State.WARN;
|
|
964
|
+
readonly "html/require-lang": import("./rules/state.js").State.WARN;
|
|
965
|
+
readonly "html/no-abstract-roles": import("./rules/state.js").State.WARN;
|
|
966
|
+
readonly "html/no-accesskey-attrs": import("./rules/state.js").State.WARN;
|
|
967
|
+
readonly "html/no-aria-hidden-body": import("./rules/state.js").State.WARN;
|
|
968
|
+
readonly "html/no-aria-hidden-on-focusable": import("./rules/state.js").State.WARN;
|
|
969
|
+
readonly "html/no-empty-headings": import("./rules/state.js").State.WARN;
|
|
970
|
+
readonly "html/no-heading-inside-button": import("./rules/state.js").State.WARN;
|
|
971
|
+
readonly "html/no-invalid-role": import("./rules/state.js").State.WARN;
|
|
972
|
+
readonly "html/no-non-scalable-viewport": import("./rules/state.js").State.WARN;
|
|
973
|
+
readonly "html/no-positive-tabindex": import("./rules/state.js").State.WARN;
|
|
974
|
+
readonly "html/no-skip-heading-levels": import("./rules/state.js").State.WARN;
|
|
975
|
+
readonly "html/require-form-method": import("./rules/state.js").State.WARN;
|
|
976
|
+
readonly "html/require-frame-title": import("./rules/state.js").State.WARN;
|
|
977
|
+
readonly "html/require-img-alt": import("./rules/state.js").State.WARN;
|
|
978
|
+
readonly "html/require-input-label": import("./rules/state.js").State.WARN;
|
|
979
|
+
readonly "html/require-meta-viewport": import("./rules/state.js").State.WARN;
|
|
997
980
|
readonly "html/attrs-newline": readonly [
|
|
998
|
-
import("./rules/state.js").State.
|
|
981
|
+
import("./rules/state.js").State.WARN,
|
|
999
982
|
{
|
|
1000
983
|
readonly ifAttrsMoreThan: 0;
|
|
1001
984
|
}
|
|
1002
985
|
];
|
|
1003
986
|
readonly "html/element-newline": readonly [
|
|
1004
|
-
import("./rules/state.js").State.
|
|
987
|
+
import("./rules/state.js").State.WARN,
|
|
1005
988
|
{
|
|
1006
989
|
readonly skip: readonly [
|
|
1007
990
|
"head"
|
|
@@ -1012,43 +995,43 @@ declare const _default: {
|
|
|
1012
995
|
}
|
|
1013
996
|
];
|
|
1014
997
|
readonly "html/indent": readonly [
|
|
1015
|
-
import("./rules/state.js").State.
|
|
998
|
+
import("./rules/state.js").State.WARN,
|
|
1016
999
|
2
|
|
1017
1000
|
];
|
|
1018
|
-
readonly "html/lowercase": import("./rules/state.js").State.
|
|
1001
|
+
readonly "html/lowercase": import("./rules/state.js").State.WARN;
|
|
1019
1002
|
readonly "html/no-extra-spacing-attrs": readonly [
|
|
1020
|
-
import("./rules/state.js").State.
|
|
1003
|
+
import("./rules/state.js").State.WARN,
|
|
1021
1004
|
{
|
|
1022
1005
|
readonly disallowMissing: true;
|
|
1023
1006
|
readonly disallowTabs: true;
|
|
1024
1007
|
readonly disallowInAssignment: true;
|
|
1025
1008
|
}
|
|
1026
1009
|
];
|
|
1027
|
-
readonly "html/no-extra-spacing-text": import("./rules/state.js").State.
|
|
1010
|
+
readonly "html/no-extra-spacing-text": import("./rules/state.js").State.WARN;
|
|
1028
1011
|
readonly "html/no-multiple-empty-lines": readonly [
|
|
1029
|
-
import("./rules/state.js").State.
|
|
1012
|
+
import("./rules/state.js").State.WARN,
|
|
1030
1013
|
{
|
|
1031
1014
|
readonly max: 1;
|
|
1032
1015
|
}
|
|
1033
1016
|
];
|
|
1034
|
-
readonly "html/no-trailing-spaces": import("./rules/state.js").State.
|
|
1035
|
-
readonly "html/quotes": import("./rules/state.js").State.
|
|
1017
|
+
readonly "html/no-trailing-spaces": import("./rules/state.js").State.WARN;
|
|
1018
|
+
readonly "html/quotes": import("./rules/state.js").State.WARN;
|
|
1036
1019
|
};
|
|
1037
1020
|
}[];
|
|
1038
1021
|
css: {
|
|
1039
1022
|
rules: {
|
|
1040
|
-
readonly "css/font-family-fallbacks": import("./rules/state.js").State.
|
|
1041
|
-
readonly "css/no-duplicate-imports": import("./rules/state.js").State.
|
|
1042
|
-
readonly "css/no-duplicate-keyframe-selectors": import("./rules/state.js").State.
|
|
1043
|
-
readonly "css/no-empty-blocks": import("./rules/state.js").State.
|
|
1044
|
-
readonly "css/no-important": import("./rules/state.js").State.
|
|
1023
|
+
readonly "css/font-family-fallbacks": import("./rules/state.js").State.WARN;
|
|
1024
|
+
readonly "css/no-duplicate-imports": import("./rules/state.js").State.WARN;
|
|
1025
|
+
readonly "css/no-duplicate-keyframe-selectors": import("./rules/state.js").State.WARN;
|
|
1026
|
+
readonly "css/no-empty-blocks": import("./rules/state.js").State.WARN;
|
|
1027
|
+
readonly "css/no-important": import("./rules/state.js").State.WARN;
|
|
1045
1028
|
readonly "css/no-invalid-at-rule-placement": import("./rules/state.js").State.ON;
|
|
1046
1029
|
readonly "css/no-invalid-at-rules": import("./rules/state.js").State.ON;
|
|
1047
1030
|
readonly "css/no-invalid-named-grid-areas": import("./rules/state.js").State.ON;
|
|
1048
|
-
readonly "css/no-unmatchable-selectors": import("./rules/state.js").State.
|
|
1049
|
-
readonly "css/prefer-logical-properties": import("./rules/state.js").State.
|
|
1050
|
-
readonly "css/relative-font-units": import("./rules/state.js").State.
|
|
1051
|
-
readonly "css/use-baseline": import("./rules/state.js").State.
|
|
1031
|
+
readonly "css/no-unmatchable-selectors": import("./rules/state.js").State.WARN;
|
|
1032
|
+
readonly "css/prefer-logical-properties": import("./rules/state.js").State.WARN;
|
|
1033
|
+
readonly "css/relative-font-units": import("./rules/state.js").State.WARN;
|
|
1034
|
+
readonly "css/use-baseline": import("./rules/state.js").State.WARN;
|
|
1052
1035
|
};
|
|
1053
1036
|
}[];
|
|
1054
1037
|
json: ({
|
|
@@ -1081,27 +1064,24 @@ declare const _default: {
|
|
|
1081
1064
|
};
|
|
1082
1065
|
} | {
|
|
1083
1066
|
rules: {
|
|
1084
|
-
readonly "jsonc/array-bracket-spacing": import("./rules/state.js").State.
|
|
1067
|
+
readonly "jsonc/array-bracket-spacing": import("./rules/state.js").State.WARN;
|
|
1085
1068
|
readonly "jsonc/array-element-newline": readonly [
|
|
1086
|
-
import("./rules/state.js").State.
|
|
1069
|
+
import("./rules/state.js").State.WARN,
|
|
1087
1070
|
"consistent"
|
|
1088
1071
|
];
|
|
1089
1072
|
readonly "jsonc/comma-dangle": import("./rules/state.js").State.ON;
|
|
1090
|
-
readonly "jsonc/comma-style": import("./rules/state.js").State.
|
|
1073
|
+
readonly "jsonc/comma-style": import("./rules/state.js").State.WARN;
|
|
1091
1074
|
readonly "jsonc/indent": readonly [
|
|
1092
|
-
import("./rules/state.js").State.
|
|
1075
|
+
import("./rules/state.js").State.WARN,
|
|
1093
1076
|
2
|
|
1094
1077
|
];
|
|
1095
|
-
readonly "jsonc/key-spacing": import("./rules/state.js").State.
|
|
1078
|
+
readonly "jsonc/key-spacing": import("./rules/state.js").State.WARN;
|
|
1096
1079
|
readonly "jsonc/no-floating-decimal": import("./rules/state.js").State.ON;
|
|
1097
1080
|
readonly "jsonc/no-irregular-whitespace": readonly [
|
|
1098
1081
|
import("./rules/state.js").State.ON,
|
|
1099
1082
|
{
|
|
1100
1083
|
readonly skipStrings: true;
|
|
1101
1084
|
readonly skipComments: true;
|
|
1102
|
-
readonly skipRegExps: true;
|
|
1103
|
-
readonly skipTemplates: true;
|
|
1104
|
-
readonly skipJSXText: true;
|
|
1105
1085
|
}
|
|
1106
1086
|
];
|
|
1107
1087
|
readonly "jsonc/no-multi-str": import("./rules/state.js").State.ON;
|
|
@@ -1110,7 +1090,7 @@ declare const _default: {
|
|
|
1110
1090
|
readonly "jsonc/no-sparse-arrays": import("./rules/state.js").State.ON;
|
|
1111
1091
|
readonly "jsonc/no-useless-escape": import("./rules/state.js").State.ON;
|
|
1112
1092
|
readonly "jsonc/object-curly-newline": readonly [
|
|
1113
|
-
import("./rules/state.js").State.
|
|
1093
|
+
import("./rules/state.js").State.WARN,
|
|
1114
1094
|
{
|
|
1115
1095
|
readonly consistent: true;
|
|
1116
1096
|
readonly multiline: true;
|
|
@@ -1118,10 +1098,10 @@ declare const _default: {
|
|
|
1118
1098
|
}
|
|
1119
1099
|
];
|
|
1120
1100
|
readonly "jsonc/object-curly-spacing": readonly [
|
|
1121
|
-
import("./rules/state.js").State.
|
|
1101
|
+
import("./rules/state.js").State.WARN,
|
|
1122
1102
|
"always"
|
|
1123
1103
|
];
|
|
1124
|
-
readonly "jsonc/object-property-newline": import("./rules/state.js").State.
|
|
1104
|
+
readonly "jsonc/object-property-newline": import("./rules/state.js").State.WARN;
|
|
1125
1105
|
readonly "jsonc/quote-props": import("./rules/state.js").State.ON;
|
|
1126
1106
|
readonly "jsonc/quotes": import("./rules/state.js").State.ON;
|
|
1127
1107
|
readonly "jsonc/space-unary-ops": import("./rules/state.js").State.ON;
|
|
@@ -1135,29 +1115,30 @@ declare const _default: {
|
|
|
1135
1115
|
jsoncc: {
|
|
1136
1116
|
rules: {
|
|
1137
1117
|
readonly "jsonc/comma-dangle": readonly [
|
|
1138
|
-
import("./rules/state.js").State.
|
|
1118
|
+
import("./rules/state.js").State.WARN,
|
|
1139
1119
|
"always-multiline"
|
|
1140
1120
|
];
|
|
1141
1121
|
};
|
|
1142
1122
|
}[];
|
|
1143
1123
|
yml: ({
|
|
1144
1124
|
rules: {
|
|
1145
|
-
readonly "yml/block-mapping-colon-indicator-newline": import("./rules/state.js").State.
|
|
1146
|
-
readonly "yml/block-mapping-question-indicator-newline": import("./rules/state.js").State.
|
|
1147
|
-
readonly "yml/block-mapping": import("./rules/state.js").State.
|
|
1148
|
-
readonly "yml/block-sequence-hyphen-indicator-newline": import("./rules/state.js").State.
|
|
1149
|
-
readonly "yml/block-sequence": import("./rules/state.js").State.
|
|
1150
|
-
readonly "yml/indent": import("./rules/state.js").State.
|
|
1151
|
-
readonly "yml/no-empty-key": import("./rules/state.js").State.
|
|
1152
|
-
readonly "yml/no-empty-sequence-entry": import("./rules/state.js").State.
|
|
1153
|
-
readonly "yml/no-tab-indent": import("./rules/state.js").State.
|
|
1154
|
-
readonly "yml/no-trailing-zeros": import("./rules/state.js").State.
|
|
1155
|
-
readonly "yml/
|
|
1125
|
+
readonly "yml/block-mapping-colon-indicator-newline": import("./rules/state.js").State.WARN;
|
|
1126
|
+
readonly "yml/block-mapping-question-indicator-newline": import("./rules/state.js").State.WARN;
|
|
1127
|
+
readonly "yml/block-mapping": import("./rules/state.js").State.WARN;
|
|
1128
|
+
readonly "yml/block-sequence-hyphen-indicator-newline": import("./rules/state.js").State.WARN;
|
|
1129
|
+
readonly "yml/block-sequence": import("./rules/state.js").State.WARN;
|
|
1130
|
+
readonly "yml/indent": import("./rules/state.js").State.WARN;
|
|
1131
|
+
readonly "yml/no-empty-key": import("./rules/state.js").State.WARN;
|
|
1132
|
+
readonly "yml/no-empty-sequence-entry": import("./rules/state.js").State.WARN;
|
|
1133
|
+
readonly "yml/no-tab-indent": import("./rules/state.js").State.WARN;
|
|
1134
|
+
readonly "yml/no-trailing-zeros": import("./rules/state.js").State.WARN;
|
|
1135
|
+
readonly "yml/quotes": import("./rules/state.js").State.WARN;
|
|
1136
|
+
readonly "yml/require-string-key": import("./rules/state.js").State.WARN;
|
|
1156
1137
|
};
|
|
1157
1138
|
} | {
|
|
1158
1139
|
rules: {
|
|
1159
1140
|
readonly "yml/flow-mapping-curly-newline": readonly [
|
|
1160
|
-
import("./rules/state.js").State.
|
|
1141
|
+
import("./rules/state.js").State.WARN,
|
|
1161
1142
|
{
|
|
1162
1143
|
readonly consistent: true;
|
|
1163
1144
|
readonly multiline: true;
|
|
@@ -1165,18 +1146,18 @@ declare const _default: {
|
|
|
1165
1146
|
}
|
|
1166
1147
|
];
|
|
1167
1148
|
readonly "yml/flow-mapping-curly-spacing": readonly [
|
|
1168
|
-
import("./rules/state.js").State.
|
|
1149
|
+
import("./rules/state.js").State.WARN,
|
|
1169
1150
|
"never",
|
|
1170
1151
|
{
|
|
1171
1152
|
readonly objectsInObjects: true;
|
|
1172
1153
|
}
|
|
1173
1154
|
];
|
|
1174
|
-
readonly "yml/flow-sequence-bracket-newline": import("./rules/state.js").State.
|
|
1175
|
-
readonly "yml/flow-sequence-bracket-spacing": import("./rules/state.js").State.
|
|
1176
|
-
readonly "yml/key-spacing": import("./rules/state.js").State.
|
|
1155
|
+
readonly "yml/flow-sequence-bracket-newline": import("./rules/state.js").State.WARN;
|
|
1156
|
+
readonly "yml/flow-sequence-bracket-spacing": import("./rules/state.js").State.WARN;
|
|
1157
|
+
readonly "yml/key-spacing": import("./rules/state.js").State.WARN;
|
|
1177
1158
|
readonly "yml/no-irregular-whitespace": import("./rules/state.js").State.ON;
|
|
1178
1159
|
readonly "yml/no-multiple-empty-lines": readonly [
|
|
1179
|
-
import("./rules/state.js").State.
|
|
1160
|
+
import("./rules/state.js").State.WARN,
|
|
1180
1161
|
{
|
|
1181
1162
|
readonly max: 1;
|
|
1182
1163
|
readonly maxBOF: 0;
|
|
@@ -1184,7 +1165,7 @@ declare const _default: {
|
|
|
1184
1165
|
}
|
|
1185
1166
|
];
|
|
1186
1167
|
readonly "yml/spaced-comment": readonly [
|
|
1187
|
-
import("./rules/state.js").State.
|
|
1168
|
+
import("./rules/state.js").State.WARN,
|
|
1188
1169
|
"always",
|
|
1189
1170
|
{
|
|
1190
1171
|
readonly exceptions: readonly [
|