@eslinted/defaults 12.17.3 → 12.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +567 -562
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.spec.d.ts +2 -0
- package/dist/index.spec.d.ts.map +1 -0
- package/dist/index.spec.js +154 -0
- package/dist/index.spec.js.map +1 -0
- package/dist/rules/_strings/option.d.ts +1 -1
- package/dist/rules/_strings/option.d.ts.map +1 -1
- package/dist/rules/_strings/option.js +1 -1
- package/dist/rules/_strings/option.js.map +1 -1
- package/dist/rules/_strings/state.d.ts +1 -1
- package/dist/rules/_strings/state.d.ts.map +1 -1
- package/dist/rules/_strings/state.js +1 -1
- package/dist/rules/_strings/state.js.map +1 -1
- package/dist/rules/_strings/state.spec.js +23 -18
- package/dist/rules/_strings/state.spec.js.map +1 -1
- package/dist/rules/css/enable.d.ts +11 -11
- package/dist/rules/css/index.d.ts +11 -11
- package/dist/rules/enable.d.ts +150 -147
- package/dist/rules/enable.d.ts.map +1 -1
- package/dist/rules/enable.js +6 -0
- package/dist/rules/enable.js.map +1 -1
- package/dist/rules/html/index.d.ts +41 -41
- package/dist/rules/html/plugin/index.d.ts +41 -41
- package/dist/rules/index.d.ts +552 -550
- package/dist/rules/index.d.ts.map +1 -1
- package/dist/rules/json/enable.d.ts +4 -4
- package/dist/rules/json/index.d.ts +42 -42
- package/dist/rules/json/plugin/extension.d.ts +19 -19
- package/dist/rules/json/plugin/index.d.ts +19 -19
- package/dist/rules/jsonc/index.d.ts +1 -1
- package/dist/rules/jsonc/plugin/index.d.ts +1 -1
- package/dist/rules/jsoncc/index.d.ts +1 -1
- package/dist/rules/jsoncc/plugin/index.d.ts +1 -1
- package/dist/rules/mocha/chai/expect.d.ts +3 -3
- package/dist/rules/mocha/chai/index.d.ts +1 -1
- package/dist/rules/mocha/disable.d.ts +2 -2
- package/dist/rules/mocha/enable.d.ts +16 -16
- package/dist/rules/mocha/index.d.ts +22 -22
- package/dist/rules/stylistic.d.ts +67 -67
- package/dist/rules/svelte/disable.d.ts +6 -6
- package/dist/rules/svelte/enable.d.ts +67 -67
- package/dist/rules/svelte/extension/disable.d.ts +3 -3
- package/dist/rules/svelte/extension/index.d.ts +2 -2
- package/dist/rules/svelte/index.d.ts +78 -78
- package/dist/rules/ts/disable.d.ts +19 -19
- package/dist/rules/ts/enable.d.ts +86 -86
- package/dist/rules/ts/extension/disable.d.ts +8 -8
- package/dist/rules/ts/extension/index.d.ts +7 -7
- package/dist/rules/ts/index.d.ts +120 -120
- package/dist/rules/yml/enable.d.ts +11 -12
- package/dist/rules/yml/enable.d.ts.map +1 -1
- package/dist/rules/yml/enable.js +0 -1
- package/dist/rules/yml/enable.js.map +1 -1
- package/dist/rules/yml/extension.d.ts +8 -8
- package/dist/rules/yml/index.d.ts +19 -20
- package/dist/rules/yml/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.spec.ts +228 -0
- package/src/index.ts +1 -1
- package/src/rules/_strings/option.ts +1 -2
- package/src/rules/_strings/state.spec.ts +27 -22
- package/src/rules/_strings/state.ts +3 -3
- package/src/rules/enable.ts +6 -0
- package/src/rules/yml/enable.ts +1 -1
package/dist/rules/index.d.ts
CHANGED
|
@@ -2,178 +2,178 @@ export declare const rules: {
|
|
|
2
2
|
js: ({
|
|
3
3
|
id: "enable";
|
|
4
4
|
rules: {
|
|
5
|
-
readonly "array-callback-return": readonly [
|
|
5
|
+
readonly "array-callback-return": readonly [2, {
|
|
6
6
|
readonly checkForEach: true;
|
|
7
7
|
readonly allowVoid: true;
|
|
8
8
|
}];
|
|
9
|
-
readonly "constructor-super":
|
|
10
|
-
readonly "for-direction":
|
|
11
|
-
readonly "getter-return":
|
|
12
|
-
readonly "no-async-promise-executor":
|
|
13
|
-
readonly "no-await-in-loop":
|
|
14
|
-
readonly "no-class-assign":
|
|
15
|
-
readonly "no-compare-neg-zero":
|
|
16
|
-
readonly "no-cond-assign":
|
|
17
|
-
readonly "no-const-assign":
|
|
18
|
-
readonly "no-constant-binary-expression":
|
|
19
|
-
readonly "no-constant-condition": readonly [
|
|
9
|
+
readonly "constructor-super": 2;
|
|
10
|
+
readonly "for-direction": 2;
|
|
11
|
+
readonly "getter-return": 2;
|
|
12
|
+
readonly "no-async-promise-executor": 2;
|
|
13
|
+
readonly "no-await-in-loop": 2;
|
|
14
|
+
readonly "no-class-assign": 2;
|
|
15
|
+
readonly "no-compare-neg-zero": 2;
|
|
16
|
+
readonly "no-cond-assign": 2;
|
|
17
|
+
readonly "no-const-assign": 2;
|
|
18
|
+
readonly "no-constant-binary-expression": 2;
|
|
19
|
+
readonly "no-constant-condition": readonly [2, {
|
|
20
20
|
readonly checkLoops: "all";
|
|
21
21
|
}];
|
|
22
|
-
readonly "no-constructor-return":
|
|
23
|
-
readonly "no-control-regex":
|
|
24
|
-
readonly "no-debugger":
|
|
25
|
-
readonly "no-dupe-args":
|
|
26
|
-
readonly "no-dupe-class-members":
|
|
27
|
-
readonly "no-dupe-else-if":
|
|
28
|
-
readonly "no-dupe-keys":
|
|
29
|
-
readonly "no-duplicate-case":
|
|
30
|
-
readonly "no-duplicate-imports": readonly [
|
|
22
|
+
readonly "no-constructor-return": 2;
|
|
23
|
+
readonly "no-control-regex": 2;
|
|
24
|
+
readonly "no-debugger": 2;
|
|
25
|
+
readonly "no-dupe-args": 2;
|
|
26
|
+
readonly "no-dupe-class-members": 2;
|
|
27
|
+
readonly "no-dupe-else-if": 2;
|
|
28
|
+
readonly "no-dupe-keys": 2;
|
|
29
|
+
readonly "no-duplicate-case": 2;
|
|
30
|
+
readonly "no-duplicate-imports": readonly [2, {
|
|
31
31
|
readonly includeExports: true;
|
|
32
32
|
readonly allowSeparateTypeImports: true;
|
|
33
33
|
}];
|
|
34
|
-
readonly "no-empty-character-class":
|
|
35
|
-
readonly "no-empty-pattern":
|
|
36
|
-
readonly "no-ex-assign":
|
|
37
|
-
readonly "no-fallthrough":
|
|
38
|
-
readonly "no-func-assign":
|
|
39
|
-
readonly "no-import-assign":
|
|
40
|
-
readonly "no-inner-declarations": readonly [
|
|
41
|
-
readonly "no-invalid-regexp":
|
|
42
|
-
readonly "no-irregular-whitespace":
|
|
43
|
-
readonly "no-loss-of-precision":
|
|
44
|
-
readonly "no-misleading-character-class":
|
|
45
|
-
readonly "no-new-native-nonconstructor":
|
|
46
|
-
readonly "no-obj-calls":
|
|
47
|
-
readonly "no-promise-executor-return": readonly [
|
|
34
|
+
readonly "no-empty-character-class": 2;
|
|
35
|
+
readonly "no-empty-pattern": 2;
|
|
36
|
+
readonly "no-ex-assign": 2;
|
|
37
|
+
readonly "no-fallthrough": 2;
|
|
38
|
+
readonly "no-func-assign": 2;
|
|
39
|
+
readonly "no-import-assign": 2;
|
|
40
|
+
readonly "no-inner-declarations": readonly [2, "both"];
|
|
41
|
+
readonly "no-invalid-regexp": 2;
|
|
42
|
+
readonly "no-irregular-whitespace": 2;
|
|
43
|
+
readonly "no-loss-of-precision": 2;
|
|
44
|
+
readonly "no-misleading-character-class": 2;
|
|
45
|
+
readonly "no-new-native-nonconstructor": 2;
|
|
46
|
+
readonly "no-obj-calls": 2;
|
|
47
|
+
readonly "no-promise-executor-return": readonly [2, {
|
|
48
48
|
readonly allowVoid: true;
|
|
49
49
|
}];
|
|
50
|
-
readonly "no-prototype-builtins":
|
|
51
|
-
readonly "no-self-assign":
|
|
52
|
-
readonly "no-self-compare":
|
|
53
|
-
readonly "no-setter-return":
|
|
54
|
-
readonly "no-sparse-arrays":
|
|
55
|
-
readonly "no-template-curly-in-string":
|
|
56
|
-
readonly "no-this-before-super":
|
|
57
|
-
readonly "no-unassigned-vars":
|
|
58
|
-
readonly "no-undef":
|
|
59
|
-
readonly "no-unexpected-multiline":
|
|
60
|
-
readonly "no-unmodified-loop-condition":
|
|
61
|
-
readonly "no-unreachable":
|
|
62
|
-
readonly "no-unreachable-loop":
|
|
63
|
-
readonly "no-unsafe-finally":
|
|
64
|
-
readonly "no-unsafe-negation": readonly [
|
|
50
|
+
readonly "no-prototype-builtins": 2;
|
|
51
|
+
readonly "no-self-assign": 2;
|
|
52
|
+
readonly "no-self-compare": 2;
|
|
53
|
+
readonly "no-setter-return": 2;
|
|
54
|
+
readonly "no-sparse-arrays": 2;
|
|
55
|
+
readonly "no-template-curly-in-string": 2;
|
|
56
|
+
readonly "no-this-before-super": 2;
|
|
57
|
+
readonly "no-unassigned-vars": 2;
|
|
58
|
+
readonly "no-undef": 2;
|
|
59
|
+
readonly "no-unexpected-multiline": 2;
|
|
60
|
+
readonly "no-unmodified-loop-condition": 2;
|
|
61
|
+
readonly "no-unreachable": 2;
|
|
62
|
+
readonly "no-unreachable-loop": 2;
|
|
63
|
+
readonly "no-unsafe-finally": 2;
|
|
64
|
+
readonly "no-unsafe-negation": readonly [2, {
|
|
65
65
|
readonly enforceForOrderingRelations: true;
|
|
66
66
|
}];
|
|
67
|
-
readonly "no-unsafe-optional-chaining": readonly [
|
|
67
|
+
readonly "no-unsafe-optional-chaining": readonly [2, {
|
|
68
68
|
readonly disallowArithmeticOperators: true;
|
|
69
69
|
}];
|
|
70
|
-
readonly "no-unused-private-class-members":
|
|
71
|
-
readonly "no-unused-vars":
|
|
72
|
-
readonly "no-use-before-define": readonly [
|
|
70
|
+
readonly "no-unused-private-class-members": 2;
|
|
71
|
+
readonly "no-unused-vars": 2;
|
|
72
|
+
readonly "no-use-before-define": readonly [2, {
|
|
73
73
|
readonly typedefs: false;
|
|
74
74
|
}];
|
|
75
|
-
readonly "no-useless-assignment":
|
|
76
|
-
readonly "no-useless-backreference":
|
|
77
|
-
readonly "require-atomic-updates":
|
|
78
|
-
readonly "use-isnan": readonly [
|
|
75
|
+
readonly "no-useless-assignment": 2;
|
|
76
|
+
readonly "no-useless-backreference": 2;
|
|
77
|
+
readonly "require-atomic-updates": 2;
|
|
78
|
+
readonly "use-isnan": readonly [2, {
|
|
79
79
|
readonly enforceForIndexOf: true;
|
|
80
80
|
}];
|
|
81
|
-
readonly "valid-typeof": readonly [
|
|
81
|
+
readonly "valid-typeof": readonly [2, {
|
|
82
82
|
readonly requireStringLiterals: true;
|
|
83
83
|
}];
|
|
84
|
-
readonly "accessor-pairs": readonly [
|
|
84
|
+
readonly "accessor-pairs": readonly [2, {
|
|
85
85
|
readonly enforceForTSTypes: true;
|
|
86
86
|
}];
|
|
87
|
-
readonly "arrow-body-style":
|
|
88
|
-
readonly "block-scoped-var":
|
|
89
|
-
readonly "consistent-return":
|
|
90
|
-
readonly "consistent-this":
|
|
91
|
-
readonly curly: readonly [
|
|
92
|
-
readonly "default-case-last":
|
|
93
|
-
readonly "default-param-last":
|
|
94
|
-
readonly "dot-notation":
|
|
95
|
-
readonly eqeqeq:
|
|
96
|
-
readonly "init-declarations":
|
|
97
|
-
readonly "logical-assignment-operators": readonly [
|
|
87
|
+
readonly "arrow-body-style": 2;
|
|
88
|
+
readonly "block-scoped-var": 2;
|
|
89
|
+
readonly "consistent-return": 2;
|
|
90
|
+
readonly "consistent-this": 2;
|
|
91
|
+
readonly curly: readonly [2, "multi"];
|
|
92
|
+
readonly "default-case-last": 2;
|
|
93
|
+
readonly "default-param-last": 2;
|
|
94
|
+
readonly "dot-notation": 2;
|
|
95
|
+
readonly eqeqeq: 2;
|
|
96
|
+
readonly "init-declarations": 2;
|
|
97
|
+
readonly "logical-assignment-operators": readonly [2, "always", {
|
|
98
98
|
readonly enforceForIfStatements: true;
|
|
99
99
|
}];
|
|
100
|
-
readonly "no-alert":
|
|
101
|
-
readonly "no-array-constructor":
|
|
102
|
-
readonly "no-bitwise":
|
|
103
|
-
readonly "no-caller":
|
|
104
|
-
readonly "no-case-declarations":
|
|
105
|
-
readonly "no-continue":
|
|
106
|
-
readonly "no-delete-var":
|
|
107
|
-
readonly "no-div-regex":
|
|
108
|
-
readonly "no-empty":
|
|
109
|
-
readonly "no-empty-function": readonly [
|
|
100
|
+
readonly "no-alert": 2;
|
|
101
|
+
readonly "no-array-constructor": 2;
|
|
102
|
+
readonly "no-bitwise": 2;
|
|
103
|
+
readonly "no-caller": 2;
|
|
104
|
+
readonly "no-case-declarations": 2;
|
|
105
|
+
readonly "no-continue": 2;
|
|
106
|
+
readonly "no-delete-var": 2;
|
|
107
|
+
readonly "no-div-regex": 2;
|
|
108
|
+
readonly "no-empty": 2;
|
|
109
|
+
readonly "no-empty-function": readonly [2, {
|
|
110
110
|
readonly allow: readonly ["constructors", "privateConstructors", "protectedConstructors", "decoratedFunctions", "overrideMethods"];
|
|
111
111
|
}];
|
|
112
|
-
readonly "no-empty-static-block":
|
|
113
|
-
readonly "no-eq-null":
|
|
114
|
-
readonly "no-eval":
|
|
115
|
-
readonly "no-extend-native":
|
|
116
|
-
readonly "no-extra-bind":
|
|
117
|
-
readonly "no-extra-boolean-cast": readonly [
|
|
112
|
+
readonly "no-empty-static-block": 2;
|
|
113
|
+
readonly "no-eq-null": 2;
|
|
114
|
+
readonly "no-eval": 2;
|
|
115
|
+
readonly "no-extend-native": 2;
|
|
116
|
+
readonly "no-extra-bind": 2;
|
|
117
|
+
readonly "no-extra-boolean-cast": readonly [2, {
|
|
118
118
|
readonly enforceForLogicalOperands: true;
|
|
119
119
|
}];
|
|
120
|
-
readonly "no-extra-label":
|
|
121
|
-
readonly "no-global-assign":
|
|
122
|
-
readonly "no-implicit-coercion": readonly [
|
|
120
|
+
readonly "no-extra-label": 2;
|
|
121
|
+
readonly "no-global-assign": 2;
|
|
122
|
+
readonly "no-implicit-coercion": readonly [2, {
|
|
123
123
|
readonly disallowTemplateShorthand: true;
|
|
124
124
|
}];
|
|
125
|
-
readonly "no-implied-eval":
|
|
126
|
-
readonly "no-invalid-this": readonly [
|
|
125
|
+
readonly "no-implied-eval": 2;
|
|
126
|
+
readonly "no-invalid-this": readonly [2, {
|
|
127
127
|
readonly capIsConstructor: false;
|
|
128
128
|
}];
|
|
129
|
-
readonly "no-iterator":
|
|
130
|
-
readonly "no-label-var":
|
|
131
|
-
readonly "no-lone-blocks":
|
|
132
|
-
readonly "no-loop-func":
|
|
133
|
-
readonly "no-multi-assign":
|
|
134
|
-
readonly "no-multi-str":
|
|
135
|
-
readonly "no-new":
|
|
136
|
-
readonly "no-new-func":
|
|
137
|
-
readonly "no-new-wrappers":
|
|
138
|
-
readonly "no-nonoctal-decimal-escape":
|
|
139
|
-
readonly "no-object-constructor":
|
|
140
|
-
readonly "no-octal":
|
|
141
|
-
readonly "no-octal-escape":
|
|
142
|
-
readonly "no-param-reassign": readonly [
|
|
129
|
+
readonly "no-iterator": 2;
|
|
130
|
+
readonly "no-label-var": 2;
|
|
131
|
+
readonly "no-lone-blocks": 2;
|
|
132
|
+
readonly "no-loop-func": 2;
|
|
133
|
+
readonly "no-multi-assign": 2;
|
|
134
|
+
readonly "no-multi-str": 2;
|
|
135
|
+
readonly "no-new": 2;
|
|
136
|
+
readonly "no-new-func": 2;
|
|
137
|
+
readonly "no-new-wrappers": 2;
|
|
138
|
+
readonly "no-nonoctal-decimal-escape": 2;
|
|
139
|
+
readonly "no-object-constructor": 2;
|
|
140
|
+
readonly "no-octal": 2;
|
|
141
|
+
readonly "no-octal-escape": 2;
|
|
142
|
+
readonly "no-param-reassign": readonly [2, {
|
|
143
143
|
readonly props: true;
|
|
144
144
|
}];
|
|
145
|
-
readonly "no-plusplus": readonly [
|
|
145
|
+
readonly "no-plusplus": readonly [2, {
|
|
146
146
|
readonly allowForLoopAfterthoughts: true;
|
|
147
147
|
}];
|
|
148
|
-
readonly "no-proto":
|
|
149
|
-
readonly "no-script-url":
|
|
150
|
-
readonly "no-sequences":
|
|
151
|
-
readonly "no-shadow-restricted-names":
|
|
152
|
-
readonly "no-throw-literal":
|
|
153
|
-
readonly "no-undef-init":
|
|
154
|
-
readonly "no-unneeded-ternary":
|
|
155
|
-
readonly "no-unused-expressions": readonly [
|
|
148
|
+
readonly "no-proto": 2;
|
|
149
|
+
readonly "no-script-url": 2;
|
|
150
|
+
readonly "no-sequences": 2;
|
|
151
|
+
readonly "no-shadow-restricted-names": 2;
|
|
152
|
+
readonly "no-throw-literal": 2;
|
|
153
|
+
readonly "no-undef-init": 2;
|
|
154
|
+
readonly "no-unneeded-ternary": 2;
|
|
155
|
+
readonly "no-unused-expressions": readonly [2, {
|
|
156
156
|
readonly allowShortCircuit: true;
|
|
157
157
|
readonly allowTernary: true;
|
|
158
158
|
}];
|
|
159
|
-
readonly "no-unused-labels":
|
|
160
|
-
readonly "no-useless-call":
|
|
161
|
-
readonly "no-useless-catch":
|
|
162
|
-
readonly "no-useless-computed-key":
|
|
163
|
-
readonly "no-useless-concat":
|
|
164
|
-
readonly "no-useless-constructor":
|
|
165
|
-
readonly "no-useless-escape": readonly [
|
|
159
|
+
readonly "no-unused-labels": 2;
|
|
160
|
+
readonly "no-useless-call": 2;
|
|
161
|
+
readonly "no-useless-catch": 2;
|
|
162
|
+
readonly "no-useless-computed-key": 2;
|
|
163
|
+
readonly "no-useless-concat": 2;
|
|
164
|
+
readonly "no-useless-constructor": 2;
|
|
165
|
+
readonly "no-useless-escape": readonly [2, {
|
|
166
166
|
readonly allowRegexCharacters: readonly ["-"];
|
|
167
167
|
}];
|
|
168
|
-
readonly "no-useless-rename":
|
|
169
|
-
readonly "no-useless-return":
|
|
170
|
-
readonly "no-var":
|
|
171
|
-
readonly "no-void": readonly [
|
|
168
|
+
readonly "no-useless-rename": 2;
|
|
169
|
+
readonly "no-useless-return": 2;
|
|
170
|
+
readonly "no-var": 2;
|
|
171
|
+
readonly "no-void": readonly [2, {
|
|
172
172
|
readonly allowAsStatement: true;
|
|
173
173
|
}];
|
|
174
|
-
readonly "no-with":
|
|
175
|
-
readonly "object-shorthand":
|
|
176
|
-
readonly "one-var": readonly [
|
|
174
|
+
readonly "no-with": 2;
|
|
175
|
+
readonly "object-shorthand": 2;
|
|
176
|
+
readonly "one-var": readonly [2, {
|
|
177
177
|
readonly var: "consecutive";
|
|
178
178
|
readonly let: "consecutive";
|
|
179
179
|
readonly const: "consecutive";
|
|
@@ -181,63 +181,66 @@ export declare const rules: {
|
|
|
181
181
|
readonly awaitUsing: "consecutive";
|
|
182
182
|
readonly separateRequires: true;
|
|
183
183
|
}];
|
|
184
|
-
readonly "operator-assignment":
|
|
185
|
-
readonly "prefer-arrow-callback":
|
|
186
|
-
readonly "prefer-const": readonly [
|
|
184
|
+
readonly "operator-assignment": 2;
|
|
185
|
+
readonly "prefer-arrow-callback": 2;
|
|
186
|
+
readonly "prefer-const": readonly [2, {
|
|
187
187
|
readonly destructuring: "all";
|
|
188
188
|
}];
|
|
189
|
-
readonly "prefer-destructuring": readonly [
|
|
189
|
+
readonly "prefer-destructuring": readonly [2, {
|
|
190
190
|
readonly AssignmentExpression: {
|
|
191
191
|
readonly array: false;
|
|
192
192
|
readonly object: false;
|
|
193
193
|
};
|
|
194
194
|
}];
|
|
195
|
-
readonly "prefer-exponentiation-operator":
|
|
196
|
-
readonly "prefer-numeric-literals":
|
|
197
|
-
readonly "prefer-object-has-own":
|
|
198
|
-
readonly "prefer-object-spread":
|
|
199
|
-
readonly "prefer-promise-reject-errors":
|
|
200
|
-
readonly "prefer-regex-literals": readonly [
|
|
195
|
+
readonly "prefer-exponentiation-operator": 2;
|
|
196
|
+
readonly "prefer-numeric-literals": 2;
|
|
197
|
+
readonly "prefer-object-has-own": 2;
|
|
198
|
+
readonly "prefer-object-spread": 2;
|
|
199
|
+
readonly "prefer-promise-reject-errors": 2;
|
|
200
|
+
readonly "prefer-regex-literals": readonly [2, {
|
|
201
201
|
readonly disallowRedundantWrapping: true;
|
|
202
202
|
}];
|
|
203
|
-
readonly "prefer-rest-params":
|
|
204
|
-
readonly "prefer-spread":
|
|
205
|
-
readonly
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
readonly
|
|
209
|
-
readonly "
|
|
210
|
-
readonly
|
|
203
|
+
readonly "prefer-rest-params": 2;
|
|
204
|
+
readonly "prefer-spread": 2;
|
|
205
|
+
readonly "preserve-caught-error": readonly [2, {
|
|
206
|
+
readonly requireCatchParameter: true;
|
|
207
|
+
}];
|
|
208
|
+
readonly radix: readonly [2, "as-needed"];
|
|
209
|
+
readonly "require-await": 2;
|
|
210
|
+
readonly "require-unicode-regexp": 2;
|
|
211
|
+
readonly "require-yield": 2;
|
|
212
|
+
readonly "vars-on-top": 2;
|
|
213
|
+
readonly yoda: 2;
|
|
211
214
|
};
|
|
212
215
|
} | {
|
|
213
216
|
id: "enable/style";
|
|
214
217
|
rules: {
|
|
215
|
-
readonly "@stylistic/array-bracket-newline":
|
|
216
|
-
readonly "@stylistic/array-bracket-spacing":
|
|
217
|
-
readonly "@stylistic/array-element-newline": readonly [
|
|
218
|
+
readonly "@stylistic/array-bracket-newline": 2;
|
|
219
|
+
readonly "@stylistic/array-bracket-spacing": 2;
|
|
220
|
+
readonly "@stylistic/array-element-newline": readonly [2, {
|
|
218
221
|
readonly consistent: true;
|
|
219
222
|
readonly multiline: true;
|
|
220
223
|
readonly minItems: 3;
|
|
221
224
|
}];
|
|
222
|
-
readonly "@stylistic/arrow-parens": readonly [
|
|
223
|
-
readonly "@stylistic/arrow-spacing":
|
|
224
|
-
readonly "@stylistic/block-spacing":
|
|
225
|
-
readonly "@stylistic/brace-style": readonly [
|
|
225
|
+
readonly "@stylistic/arrow-parens": readonly [2, "as-needed"];
|
|
226
|
+
readonly "@stylistic/arrow-spacing": 2;
|
|
227
|
+
readonly "@stylistic/block-spacing": 2;
|
|
228
|
+
readonly "@stylistic/brace-style": readonly [2, "stroustrup", {
|
|
226
229
|
readonly allowSingleLine: true;
|
|
227
230
|
}];
|
|
228
|
-
readonly "@stylistic/comma-dangle": readonly [
|
|
229
|
-
readonly "@stylistic/comma-spacing":
|
|
230
|
-
readonly "@stylistic/comma-style":
|
|
231
|
-
readonly "@stylistic/computed-property-spacing":
|
|
232
|
-
readonly "@stylistic/curly-newline":
|
|
233
|
-
readonly "@stylistic/dot-location": readonly [
|
|
234
|
-
readonly "@stylistic/eol-last":
|
|
235
|
-
readonly "@stylistic/function-call-argument-newline": readonly [
|
|
236
|
-
readonly "@stylistic/function-call-spacing":
|
|
237
|
-
readonly "@stylistic/function-paren-newline": readonly [
|
|
238
|
-
readonly "@stylistic/generator-star-spacing":
|
|
239
|
-
readonly "@stylistic/implicit-arrow-linebreak":
|
|
240
|
-
readonly "@stylistic/indent": readonly [
|
|
231
|
+
readonly "@stylistic/comma-dangle": readonly [2, "always-multiline"];
|
|
232
|
+
readonly "@stylistic/comma-spacing": 2;
|
|
233
|
+
readonly "@stylistic/comma-style": 2;
|
|
234
|
+
readonly "@stylistic/computed-property-spacing": 2;
|
|
235
|
+
readonly "@stylistic/curly-newline": 2;
|
|
236
|
+
readonly "@stylistic/dot-location": readonly [2, "property"];
|
|
237
|
+
readonly "@stylistic/eol-last": 2;
|
|
238
|
+
readonly "@stylistic/function-call-argument-newline": readonly [2, "consistent"];
|
|
239
|
+
readonly "@stylistic/function-call-spacing": 2;
|
|
240
|
+
readonly "@stylistic/function-paren-newline": readonly [2, "multiline-arguments"];
|
|
241
|
+
readonly "@stylistic/generator-star-spacing": 2;
|
|
242
|
+
readonly "@stylistic/implicit-arrow-linebreak": 2;
|
|
243
|
+
readonly "@stylistic/indent": readonly [2, 2, {
|
|
241
244
|
readonly assignmentOperator: 0;
|
|
242
245
|
readonly VariableDeclarator: {
|
|
243
246
|
readonly var: 0;
|
|
@@ -247,10 +250,10 @@ export declare const rules: {
|
|
|
247
250
|
readonly outerIIFEBody: 0;
|
|
248
251
|
readonly offsetTernaryExpressions: true;
|
|
249
252
|
}];
|
|
250
|
-
readonly "@stylistic/indent-binary-ops": readonly [
|
|
251
|
-
readonly "@stylistic/key-spacing":
|
|
252
|
-
readonly "@stylistic/keyword-spacing":
|
|
253
|
-
readonly "@stylistic/lines-between-class-members": readonly [
|
|
253
|
+
readonly "@stylistic/indent-binary-ops": readonly [2, 2];
|
|
254
|
+
readonly "@stylistic/key-spacing": 2;
|
|
255
|
+
readonly "@stylistic/keyword-spacing": 2;
|
|
256
|
+
readonly "@stylistic/lines-between-class-members": readonly [2, {
|
|
254
257
|
readonly enforce: readonly [{
|
|
255
258
|
readonly prev: "field";
|
|
256
259
|
readonly next: "field";
|
|
@@ -265,7 +268,7 @@ export declare const rules: {
|
|
|
265
268
|
readonly blankLine: "always";
|
|
266
269
|
}];
|
|
267
270
|
}];
|
|
268
|
-
readonly "@stylistic/max-len": readonly [
|
|
271
|
+
readonly "@stylistic/max-len": readonly [2, {
|
|
269
272
|
readonly code: 300;
|
|
270
273
|
readonly ignoreComments: true;
|
|
271
274
|
readonly ignoreTrailingComments: true;
|
|
@@ -274,42 +277,42 @@ export declare const rules: {
|
|
|
274
277
|
readonly ignoreTemplateLiterals: true;
|
|
275
278
|
readonly ignoreRegExpLiterals: true;
|
|
276
279
|
}];
|
|
277
|
-
readonly "@stylistic/max-statements-per-line":
|
|
278
|
-
readonly "@stylistic/member-delimiter-style":
|
|
279
|
-
readonly "@stylistic/multiline-ternary": readonly [
|
|
280
|
-
readonly "@stylistic/newline-per-chained-call":
|
|
281
|
-
readonly "@stylistic/no-extra-parens":
|
|
282
|
-
readonly "@stylistic/no-extra-semi":
|
|
283
|
-
readonly "@stylistic/no-floating-decimal":
|
|
284
|
-
readonly "@stylistic/no-mixed-spaces-and-tabs":
|
|
285
|
-
readonly "@stylistic/no-multi-spaces": readonly [
|
|
280
|
+
readonly "@stylistic/max-statements-per-line": 2;
|
|
281
|
+
readonly "@stylistic/member-delimiter-style": 2;
|
|
282
|
+
readonly "@stylistic/multiline-ternary": readonly [2, "always-multiline"];
|
|
283
|
+
readonly "@stylistic/newline-per-chained-call": 2;
|
|
284
|
+
readonly "@stylistic/no-extra-parens": 2;
|
|
285
|
+
readonly "@stylistic/no-extra-semi": 2;
|
|
286
|
+
readonly "@stylistic/no-floating-decimal": 2;
|
|
287
|
+
readonly "@stylistic/no-mixed-spaces-and-tabs": 2;
|
|
288
|
+
readonly "@stylistic/no-multi-spaces": readonly [2, {
|
|
286
289
|
readonly exceptions: {
|
|
287
290
|
readonly Property: false;
|
|
288
291
|
readonly ImportAttributes: false;
|
|
289
292
|
};
|
|
290
293
|
}];
|
|
291
|
-
readonly "@stylistic/no-multiple-empty-lines": readonly [
|
|
294
|
+
readonly "@stylistic/no-multiple-empty-lines": readonly [2, {
|
|
292
295
|
readonly max: 1;
|
|
293
296
|
readonly maxBOF: 0;
|
|
294
297
|
readonly maxEOF: 0;
|
|
295
298
|
}];
|
|
296
|
-
readonly "@stylistic/no-tabs":
|
|
297
|
-
readonly "@stylistic/no-trailing-spaces":
|
|
298
|
-
readonly "@stylistic/no-whitespace-before-property":
|
|
299
|
-
readonly "@stylistic/nonblock-statement-body-position": readonly [
|
|
300
|
-
readonly "@stylistic/object-curly-newline": readonly [
|
|
299
|
+
readonly "@stylistic/no-tabs": 2;
|
|
300
|
+
readonly "@stylistic/no-trailing-spaces": 2;
|
|
301
|
+
readonly "@stylistic/no-whitespace-before-property": 2;
|
|
302
|
+
readonly "@stylistic/nonblock-statement-body-position": readonly [2, "below"];
|
|
303
|
+
readonly "@stylistic/object-curly-newline": readonly [2, {
|
|
301
304
|
readonly consistent: true;
|
|
302
305
|
readonly multiline: true;
|
|
303
306
|
readonly minProperties: 3;
|
|
304
307
|
}];
|
|
305
|
-
readonly "@stylistic/object-curly-spacing": readonly [
|
|
306
|
-
readonly "@stylistic/object-property-newline":
|
|
307
|
-
readonly "@stylistic/one-var-declaration-per-line": readonly [
|
|
308
|
-
readonly "@stylistic/operator-linebreak": readonly [
|
|
309
|
-
readonly "@stylistic/padded-blocks": readonly [
|
|
308
|
+
readonly "@stylistic/object-curly-spacing": readonly [2, "always"];
|
|
309
|
+
readonly "@stylistic/object-property-newline": 2;
|
|
310
|
+
readonly "@stylistic/one-var-declaration-per-line": readonly [2, "always"];
|
|
311
|
+
readonly "@stylistic/operator-linebreak": readonly [2, "before"];
|
|
312
|
+
readonly "@stylistic/padded-blocks": readonly [2, "never", {
|
|
310
313
|
readonly allowSingleLineBlocks: true;
|
|
311
314
|
}];
|
|
312
|
-
readonly "@stylistic/padding-line-between-statements": readonly [
|
|
315
|
+
readonly "@stylistic/padding-line-between-statements": readonly [1, {
|
|
313
316
|
readonly blankLine: "never";
|
|
314
317
|
readonly prev: readonly ["block-like", "block", "break", "case", "cjs-export", "cjs-import", "class", "const", "continue", "debugger", "default", "directive", "do", "empty", "enum", "export", "for", "function-overload", "function", "if", "iife", "import", "interface", "let", "return", "switch", "throw", "try", "type", "using", "var", "while", "with"];
|
|
315
318
|
readonly next: "*";
|
|
@@ -362,25 +365,25 @@ export declare const rules: {
|
|
|
362
365
|
readonly prev: "*";
|
|
363
366
|
readonly next: readonly ["break", "continue", "return", "throw"];
|
|
364
367
|
}];
|
|
365
|
-
readonly "@stylistic/quote-props": readonly [
|
|
368
|
+
readonly "@stylistic/quote-props": readonly [2, "as-needed", {
|
|
366
369
|
readonly keywords: true;
|
|
367
370
|
}];
|
|
368
|
-
readonly "@stylistic/quotes": readonly [
|
|
371
|
+
readonly "@stylistic/quotes": readonly [2, "double", {
|
|
369
372
|
readonly avoidEscape: true;
|
|
370
373
|
readonly allowTemplateLiterals: "always";
|
|
371
374
|
}];
|
|
372
|
-
readonly "@stylistic/rest-spread-spacing":
|
|
373
|
-
readonly "@stylistic/semi":
|
|
374
|
-
readonly "@stylistic/semi-spacing":
|
|
375
|
-
readonly "@stylistic/semi-style":
|
|
376
|
-
readonly "@stylistic/space-before-blocks":
|
|
377
|
-
readonly "@stylistic/space-before-function-paren": readonly [
|
|
375
|
+
readonly "@stylistic/rest-spread-spacing": 2;
|
|
376
|
+
readonly "@stylistic/semi": 2;
|
|
377
|
+
readonly "@stylistic/semi-spacing": 2;
|
|
378
|
+
readonly "@stylistic/semi-style": 2;
|
|
379
|
+
readonly "@stylistic/space-before-blocks": 2;
|
|
380
|
+
readonly "@stylistic/space-before-function-paren": readonly [2, {
|
|
378
381
|
readonly named: "never";
|
|
379
382
|
}];
|
|
380
|
-
readonly "@stylistic/space-in-parens":
|
|
381
|
-
readonly "@stylistic/space-infix-ops":
|
|
382
|
-
readonly "@stylistic/space-unary-ops":
|
|
383
|
-
readonly "@stylistic/spaced-comment": readonly [
|
|
383
|
+
readonly "@stylistic/space-in-parens": 2;
|
|
384
|
+
readonly "@stylistic/space-infix-ops": 2;
|
|
385
|
+
readonly "@stylistic/space-unary-ops": 2;
|
|
386
|
+
readonly "@stylistic/spaced-comment": readonly [2, "always", {
|
|
384
387
|
readonly line: {
|
|
385
388
|
readonly exceptions: readonly ["/", "-", "+", "="];
|
|
386
389
|
readonly markers: readonly ["!", "@", "#", "/", "#region", "#endregion", "#part", "/#region", "/#endregion", "/#part"];
|
|
@@ -391,10 +394,10 @@ export declare const rules: {
|
|
|
391
394
|
readonly balanced: true;
|
|
392
395
|
};
|
|
393
396
|
}];
|
|
394
|
-
readonly "@stylistic/switch-colon-spacing":
|
|
395
|
-
readonly "@stylistic/template-curly-spacing":
|
|
396
|
-
readonly "@stylistic/template-tag-spacing":
|
|
397
|
-
readonly "@stylistic/type-annotation-spacing": readonly [
|
|
397
|
+
readonly "@stylistic/switch-colon-spacing": 2;
|
|
398
|
+
readonly "@stylistic/template-curly-spacing": 2;
|
|
399
|
+
readonly "@stylistic/template-tag-spacing": 2;
|
|
400
|
+
readonly "@stylistic/type-annotation-spacing": readonly [2, {
|
|
398
401
|
readonly before: true;
|
|
399
402
|
readonly after: true;
|
|
400
403
|
readonly overrides: {
|
|
@@ -404,233 +407,233 @@ export declare const rules: {
|
|
|
404
407
|
};
|
|
405
408
|
};
|
|
406
409
|
}];
|
|
407
|
-
readonly "@stylistic/type-generic-spacing":
|
|
408
|
-
readonly "@stylistic/type-named-tuple-spacing":
|
|
409
|
-
readonly "@stylistic/wrap-iife": readonly [
|
|
410
|
+
readonly "@stylistic/type-generic-spacing": 2;
|
|
411
|
+
readonly "@stylistic/type-named-tuple-spacing": 2;
|
|
412
|
+
readonly "@stylistic/wrap-iife": readonly [2, "inside", {
|
|
410
413
|
readonly functionPrototypeMethods: true;
|
|
411
414
|
}];
|
|
412
|
-
readonly "@stylistic/wrap-regex":
|
|
413
|
-
readonly "@stylistic/yield-star-spacing":
|
|
415
|
+
readonly "@stylistic/wrap-regex": 2;
|
|
416
|
+
readonly "@stylistic/yield-star-spacing": 2;
|
|
414
417
|
};
|
|
415
418
|
})[];
|
|
416
419
|
ts: ({
|
|
417
420
|
id: "disable";
|
|
418
421
|
rules: {
|
|
419
|
-
readonly "consistent-return":
|
|
420
|
-
readonly "constructor-super":
|
|
421
|
-
readonly "getter-return":
|
|
422
|
-
readonly "no-class-assign":
|
|
423
|
-
readonly "no-const-assign":
|
|
424
|
-
readonly "no-dupe-args":
|
|
425
|
-
readonly "no-dupe-class-members":
|
|
426
|
-
readonly "no-dupe-keys":
|
|
427
|
-
readonly "no-func-assign":
|
|
428
|
-
readonly "no-import-assign":
|
|
429
|
-
readonly "no-invalid-this":
|
|
430
|
-
readonly "no-new-native-nonconstructor":
|
|
431
|
-
readonly "no-obj-calls":
|
|
432
|
-
readonly "no-redeclare":
|
|
433
|
-
readonly "no-setter-return":
|
|
434
|
-
readonly "no-this-before-super":
|
|
435
|
-
readonly "no-undef":
|
|
436
|
-
readonly "no-unreachable":
|
|
437
|
-
readonly "no-unsafe-negation":
|
|
422
|
+
readonly "consistent-return": 0;
|
|
423
|
+
readonly "constructor-super": 0;
|
|
424
|
+
readonly "getter-return": 0;
|
|
425
|
+
readonly "no-class-assign": 0;
|
|
426
|
+
readonly "no-const-assign": 0;
|
|
427
|
+
readonly "no-dupe-args": 0;
|
|
428
|
+
readonly "no-dupe-class-members": 0;
|
|
429
|
+
readonly "no-dupe-keys": 0;
|
|
430
|
+
readonly "no-func-assign": 0;
|
|
431
|
+
readonly "no-import-assign": 0;
|
|
432
|
+
readonly "no-invalid-this": 0;
|
|
433
|
+
readonly "no-new-native-nonconstructor": 0;
|
|
434
|
+
readonly "no-obj-calls": 0;
|
|
435
|
+
readonly "no-redeclare": 0;
|
|
436
|
+
readonly "no-setter-return": 0;
|
|
437
|
+
readonly "no-this-before-super": 0;
|
|
438
|
+
readonly "no-undef": 0;
|
|
439
|
+
readonly "no-unreachable": 0;
|
|
440
|
+
readonly "no-unsafe-negation": 0;
|
|
438
441
|
};
|
|
439
442
|
} | {
|
|
440
443
|
id: "disable/extension";
|
|
441
444
|
rules: {
|
|
442
|
-
readonly "dot-notation":
|
|
443
|
-
readonly "no-implied-eval":
|
|
444
|
-
readonly "no-restricted-imports":
|
|
445
|
-
readonly "no-throw-literal":
|
|
446
|
-
readonly "no-unused-vars":
|
|
447
|
-
readonly "prefer-destructuring":
|
|
448
|
-
readonly "prefer-promise-reject-errors":
|
|
449
|
-
readonly "require-await":
|
|
445
|
+
readonly "dot-notation": 0;
|
|
446
|
+
readonly "no-implied-eval": 0;
|
|
447
|
+
readonly "no-restricted-imports": 0;
|
|
448
|
+
readonly "no-throw-literal": 0;
|
|
449
|
+
readonly "no-unused-vars": 0;
|
|
450
|
+
readonly "prefer-destructuring": 0;
|
|
451
|
+
readonly "prefer-promise-reject-errors": 0;
|
|
452
|
+
readonly "require-await": 0;
|
|
450
453
|
};
|
|
451
454
|
} | {
|
|
452
455
|
id: "enable";
|
|
453
456
|
rules: {
|
|
454
|
-
readonly "@typescript-eslint/await-thenable":
|
|
455
|
-
readonly "@typescript-eslint/ban-ts-comment":
|
|
456
|
-
readonly "@typescript-eslint/ban-tslint-comment":
|
|
457
|
-
readonly "@typescript-eslint/class-literal-property-style":
|
|
458
|
-
readonly "@typescript-eslint/consistent-generic-constructors":
|
|
459
|
-
readonly "@typescript-eslint/consistent-indexed-object-style":
|
|
460
|
-
readonly "@typescript-eslint/consistent-type-assertions": readonly [
|
|
457
|
+
readonly "@typescript-eslint/await-thenable": 2;
|
|
458
|
+
readonly "@typescript-eslint/ban-ts-comment": 2;
|
|
459
|
+
readonly "@typescript-eslint/ban-tslint-comment": 2;
|
|
460
|
+
readonly "@typescript-eslint/class-literal-property-style": 2;
|
|
461
|
+
readonly "@typescript-eslint/consistent-generic-constructors": 2;
|
|
462
|
+
readonly "@typescript-eslint/consistent-indexed-object-style": 2;
|
|
463
|
+
readonly "@typescript-eslint/consistent-type-assertions": readonly [2, {
|
|
461
464
|
readonly arrayLiteralTypeAssertions: "never";
|
|
462
465
|
readonly objectLiteralTypeAssertions: "never";
|
|
463
466
|
}];
|
|
464
|
-
readonly "@typescript-eslint/consistent-type-exports":
|
|
465
|
-
readonly "@typescript-eslint/consistent-type-imports":
|
|
466
|
-
readonly "@typescript-eslint/explicit-member-accessibility": readonly [
|
|
467
|
+
readonly "@typescript-eslint/consistent-type-exports": 2;
|
|
468
|
+
readonly "@typescript-eslint/consistent-type-imports": 2;
|
|
469
|
+
readonly "@typescript-eslint/explicit-member-accessibility": readonly [2, {
|
|
467
470
|
readonly overrides: {
|
|
468
471
|
readonly constructors: "no-public";
|
|
469
472
|
};
|
|
470
473
|
}];
|
|
471
|
-
readonly "@typescript-eslint/member-ordering": readonly [
|
|
474
|
+
readonly "@typescript-eslint/member-ordering": readonly [2, {
|
|
472
475
|
readonly default: {
|
|
473
476
|
readonly optionalityOrder: "required-first";
|
|
474
477
|
};
|
|
475
478
|
}];
|
|
476
|
-
readonly "@typescript-eslint/method-signature-style":
|
|
477
|
-
readonly "@typescript-eslint/no-array-delete":
|
|
478
|
-
readonly "@typescript-eslint/no-base-to-string":
|
|
479
|
-
readonly "@typescript-eslint/no-confusing-non-null-assertion":
|
|
480
|
-
readonly "@typescript-eslint/no-confusing-void-expression": readonly [
|
|
479
|
+
readonly "@typescript-eslint/method-signature-style": 2;
|
|
480
|
+
readonly "@typescript-eslint/no-array-delete": 2;
|
|
481
|
+
readonly "@typescript-eslint/no-base-to-string": 2;
|
|
482
|
+
readonly "@typescript-eslint/no-confusing-non-null-assertion": 2;
|
|
483
|
+
readonly "@typescript-eslint/no-confusing-void-expression": readonly [2, {
|
|
481
484
|
readonly ignoreArrowShorthand: true;
|
|
482
485
|
readonly ignoreVoidOperator: true;
|
|
483
486
|
readonly ignoreVoidReturningFunctions: true;
|
|
484
487
|
}];
|
|
485
|
-
readonly "@typescript-eslint/no-duplicate-enum-values":
|
|
486
|
-
readonly "@typescript-eslint/no-duplicate-type-constituents":
|
|
487
|
-
readonly "@typescript-eslint/no-dynamic-delete":
|
|
488
|
-
readonly "@typescript-eslint/no-empty-object-type":
|
|
489
|
-
readonly "@typescript-eslint/no-explicit-any": readonly [
|
|
488
|
+
readonly "@typescript-eslint/no-duplicate-enum-values": 2;
|
|
489
|
+
readonly "@typescript-eslint/no-duplicate-type-constituents": 2;
|
|
490
|
+
readonly "@typescript-eslint/no-dynamic-delete": 2;
|
|
491
|
+
readonly "@typescript-eslint/no-empty-object-type": 2;
|
|
492
|
+
readonly "@typescript-eslint/no-explicit-any": readonly [2, {
|
|
490
493
|
readonly fixToUnknown: true;
|
|
491
494
|
}];
|
|
492
|
-
readonly "@typescript-eslint/no-extra-non-null-assertion":
|
|
493
|
-
readonly "@typescript-eslint/no-extraneous-class": readonly [
|
|
495
|
+
readonly "@typescript-eslint/no-extra-non-null-assertion": 2;
|
|
496
|
+
readonly "@typescript-eslint/no-extraneous-class": readonly [2, {
|
|
494
497
|
readonly allowEmpty: true;
|
|
495
498
|
}];
|
|
496
|
-
readonly "@typescript-eslint/no-floating-promises": readonly [
|
|
499
|
+
readonly "@typescript-eslint/no-floating-promises": readonly [2, {
|
|
497
500
|
readonly checkThenables: true;
|
|
498
501
|
}];
|
|
499
|
-
readonly "@typescript-eslint/no-for-in-array":
|
|
500
|
-
readonly "@typescript-eslint/no-import-type-side-effects":
|
|
501
|
-
readonly "@typescript-eslint/no-inferrable-types":
|
|
502
|
-
readonly "@typescript-eslint/no-invalid-void-type":
|
|
503
|
-
readonly "@typescript-eslint/no-meaningless-void-operator": readonly [
|
|
502
|
+
readonly "@typescript-eslint/no-for-in-array": 2;
|
|
503
|
+
readonly "@typescript-eslint/no-import-type-side-effects": 2;
|
|
504
|
+
readonly "@typescript-eslint/no-inferrable-types": 2;
|
|
505
|
+
readonly "@typescript-eslint/no-invalid-void-type": 2;
|
|
506
|
+
readonly "@typescript-eslint/no-meaningless-void-operator": readonly [2, {
|
|
504
507
|
readonly checkNever: true;
|
|
505
508
|
}];
|
|
506
|
-
readonly "@typescript-eslint/no-misused-new":
|
|
507
|
-
readonly "@typescript-eslint/no-misused-promises":
|
|
508
|
-
readonly "@typescript-eslint/no-misused-spread":
|
|
509
|
-
readonly "@typescript-eslint/no-mixed-enums":
|
|
510
|
-
readonly "@typescript-eslint/no-non-null-asserted-nullish-coalescing":
|
|
511
|
-
readonly "@typescript-eslint/no-non-null-asserted-optional-chain":
|
|
512
|
-
readonly "@typescript-eslint/no-redundant-type-constituents":
|
|
513
|
-
readonly "@typescript-eslint/no-require-imports":
|
|
514
|
-
readonly "@typescript-eslint/no-this-alias":
|
|
515
|
-
readonly "@typescript-eslint/no-unnecessary-boolean-literal-compare":
|
|
516
|
-
readonly "@typescript-eslint/no-unnecessary-condition":
|
|
517
|
-
readonly "@typescript-eslint/no-unnecessary-parameter-property-assignment":
|
|
518
|
-
readonly "@typescript-eslint/no-unnecessary-qualifier":
|
|
519
|
-
readonly "@typescript-eslint/no-unnecessary-template-expression":
|
|
520
|
-
readonly "@typescript-eslint/no-unnecessary-type-arguments":
|
|
521
|
-
readonly "@typescript-eslint/no-unnecessary-type-assertion":
|
|
522
|
-
readonly "@typescript-eslint/no-unnecessary-type-constraint":
|
|
523
|
-
readonly "@typescript-eslint/no-unnecessary-type-conversion":
|
|
524
|
-
readonly "@typescript-eslint/no-unnecessary-type-parameters":
|
|
525
|
-
readonly "@typescript-eslint/no-unsafe-argument":
|
|
526
|
-
readonly "@typescript-eslint/no-unsafe-assignment":
|
|
527
|
-
readonly "@typescript-eslint/no-unsafe-call":
|
|
528
|
-
readonly "@typescript-eslint/no-unsafe-declaration-merging":
|
|
529
|
-
readonly "@typescript-eslint/no-unsafe-enum-comparison":
|
|
530
|
-
readonly "@typescript-eslint/no-unsafe-function-type":
|
|
531
|
-
readonly "@typescript-eslint/no-unsafe-member-access":
|
|
532
|
-
readonly "@typescript-eslint/no-unsafe-return":
|
|
533
|
-
readonly "@typescript-eslint/no-unsafe-unary-minus":
|
|
534
|
-
readonly "@typescript-eslint/no-useless-empty-export":
|
|
535
|
-
readonly "@typescript-eslint/no-wrapper-object-types":
|
|
536
|
-
readonly "@typescript-eslint/parameter-properties": readonly [
|
|
509
|
+
readonly "@typescript-eslint/no-misused-new": 2;
|
|
510
|
+
readonly "@typescript-eslint/no-misused-promises": 2;
|
|
511
|
+
readonly "@typescript-eslint/no-misused-spread": 2;
|
|
512
|
+
readonly "@typescript-eslint/no-mixed-enums": 2;
|
|
513
|
+
readonly "@typescript-eslint/no-non-null-asserted-nullish-coalescing": 2;
|
|
514
|
+
readonly "@typescript-eslint/no-non-null-asserted-optional-chain": 2;
|
|
515
|
+
readonly "@typescript-eslint/no-redundant-type-constituents": 2;
|
|
516
|
+
readonly "@typescript-eslint/no-require-imports": 2;
|
|
517
|
+
readonly "@typescript-eslint/no-this-alias": 2;
|
|
518
|
+
readonly "@typescript-eslint/no-unnecessary-boolean-literal-compare": 2;
|
|
519
|
+
readonly "@typescript-eslint/no-unnecessary-condition": 2;
|
|
520
|
+
readonly "@typescript-eslint/no-unnecessary-parameter-property-assignment": 2;
|
|
521
|
+
readonly "@typescript-eslint/no-unnecessary-qualifier": 2;
|
|
522
|
+
readonly "@typescript-eslint/no-unnecessary-template-expression": 2;
|
|
523
|
+
readonly "@typescript-eslint/no-unnecessary-type-arguments": 2;
|
|
524
|
+
readonly "@typescript-eslint/no-unnecessary-type-assertion": 2;
|
|
525
|
+
readonly "@typescript-eslint/no-unnecessary-type-constraint": 2;
|
|
526
|
+
readonly "@typescript-eslint/no-unnecessary-type-conversion": 2;
|
|
527
|
+
readonly "@typescript-eslint/no-unnecessary-type-parameters": 2;
|
|
528
|
+
readonly "@typescript-eslint/no-unsafe-argument": 2;
|
|
529
|
+
readonly "@typescript-eslint/no-unsafe-assignment": 2;
|
|
530
|
+
readonly "@typescript-eslint/no-unsafe-call": 2;
|
|
531
|
+
readonly "@typescript-eslint/no-unsafe-declaration-merging": 2;
|
|
532
|
+
readonly "@typescript-eslint/no-unsafe-enum-comparison": 2;
|
|
533
|
+
readonly "@typescript-eslint/no-unsafe-function-type": 2;
|
|
534
|
+
readonly "@typescript-eslint/no-unsafe-member-access": 2;
|
|
535
|
+
readonly "@typescript-eslint/no-unsafe-return": 2;
|
|
536
|
+
readonly "@typescript-eslint/no-unsafe-unary-minus": 2;
|
|
537
|
+
readonly "@typescript-eslint/no-useless-empty-export": 2;
|
|
538
|
+
readonly "@typescript-eslint/no-wrapper-object-types": 2;
|
|
539
|
+
readonly "@typescript-eslint/parameter-properties": readonly [2, {
|
|
537
540
|
readonly prefer: "parameter-property";
|
|
538
541
|
}];
|
|
539
|
-
readonly "@typescript-eslint/prefer-as-const":
|
|
540
|
-
readonly "@typescript-eslint/prefer-enum-initializers":
|
|
541
|
-
readonly "@typescript-eslint/prefer-find":
|
|
542
|
-
readonly "@typescript-eslint/prefer-for-of":
|
|
543
|
-
readonly "@typescript-eslint/prefer-function-type":
|
|
544
|
-
readonly "@typescript-eslint/prefer-includes":
|
|
545
|
-
readonly "@typescript-eslint/prefer-literal-enum-member":
|
|
546
|
-
readonly "@typescript-eslint/prefer-namespace-keyword":
|
|
547
|
-
readonly "@typescript-eslint/prefer-nullish-coalescing":
|
|
548
|
-
readonly "@typescript-eslint/prefer-optional-chain":
|
|
549
|
-
readonly "@typescript-eslint/prefer-readonly":
|
|
550
|
-
readonly "@typescript-eslint/prefer-reduce-type-parameter":
|
|
551
|
-
readonly "@typescript-eslint/prefer-regexp-exec":
|
|
552
|
-
readonly "@typescript-eslint/prefer-return-this-type":
|
|
553
|
-
readonly "@typescript-eslint/prefer-string-starts-ends-with":
|
|
554
|
-
readonly "@typescript-eslint/promise-function-async":
|
|
555
|
-
readonly "@typescript-eslint/related-getter-setter-pairs":
|
|
556
|
-
readonly "@typescript-eslint/require-array-sort-compare":
|
|
557
|
-
readonly "@typescript-eslint/restrict-plus-operands": readonly [
|
|
542
|
+
readonly "@typescript-eslint/prefer-as-const": 2;
|
|
543
|
+
readonly "@typescript-eslint/prefer-enum-initializers": 2;
|
|
544
|
+
readonly "@typescript-eslint/prefer-find": 2;
|
|
545
|
+
readonly "@typescript-eslint/prefer-for-of": 2;
|
|
546
|
+
readonly "@typescript-eslint/prefer-function-type": 2;
|
|
547
|
+
readonly "@typescript-eslint/prefer-includes": 2;
|
|
548
|
+
readonly "@typescript-eslint/prefer-literal-enum-member": 2;
|
|
549
|
+
readonly "@typescript-eslint/prefer-namespace-keyword": 2;
|
|
550
|
+
readonly "@typescript-eslint/prefer-nullish-coalescing": 2;
|
|
551
|
+
readonly "@typescript-eslint/prefer-optional-chain": 2;
|
|
552
|
+
readonly "@typescript-eslint/prefer-readonly": 2;
|
|
553
|
+
readonly "@typescript-eslint/prefer-reduce-type-parameter": 2;
|
|
554
|
+
readonly "@typescript-eslint/prefer-regexp-exec": 2;
|
|
555
|
+
readonly "@typescript-eslint/prefer-return-this-type": 2;
|
|
556
|
+
readonly "@typescript-eslint/prefer-string-starts-ends-with": 2;
|
|
557
|
+
readonly "@typescript-eslint/promise-function-async": 2;
|
|
558
|
+
readonly "@typescript-eslint/related-getter-setter-pairs": 2;
|
|
559
|
+
readonly "@typescript-eslint/require-array-sort-compare": 2;
|
|
560
|
+
readonly "@typescript-eslint/restrict-plus-operands": readonly [2, {
|
|
558
561
|
readonly allowAny: false;
|
|
559
562
|
readonly allowBoolean: false;
|
|
560
563
|
readonly allowNullish: false;
|
|
561
564
|
readonly allowNumberAndString: false;
|
|
562
565
|
readonly allowRegExp: false;
|
|
563
566
|
}];
|
|
564
|
-
readonly "@typescript-eslint/restrict-template-expressions": readonly [
|
|
567
|
+
readonly "@typescript-eslint/restrict-template-expressions": readonly [2, {
|
|
565
568
|
readonly allowNullish: false;
|
|
566
569
|
readonly allowNever: false;
|
|
567
570
|
readonly allowRegExp: false;
|
|
568
571
|
}];
|
|
569
|
-
readonly "@typescript-eslint/return-await":
|
|
570
|
-
readonly "@typescript-eslint/strict-boolean-expressions": readonly [
|
|
572
|
+
readonly "@typescript-eslint/return-await": 2;
|
|
573
|
+
readonly "@typescript-eslint/strict-boolean-expressions": readonly [2, {
|
|
571
574
|
readonly allowNullableObject: false;
|
|
572
575
|
readonly allowString: false;
|
|
573
576
|
}];
|
|
574
|
-
readonly "@typescript-eslint/switch-exhaustiveness-check":
|
|
575
|
-
readonly "@typescript-eslint/unbound-method":
|
|
576
|
-
readonly "@typescript-eslint/unified-signatures":
|
|
577
|
-
readonly "@typescript-eslint/use-unknown-in-catch-callback-variable":
|
|
577
|
+
readonly "@typescript-eslint/switch-exhaustiveness-check": 2;
|
|
578
|
+
readonly "@typescript-eslint/unbound-method": 2;
|
|
579
|
+
readonly "@typescript-eslint/unified-signatures": 2;
|
|
580
|
+
readonly "@typescript-eslint/use-unknown-in-catch-callback-variable": 2;
|
|
578
581
|
};
|
|
579
582
|
} | {
|
|
580
583
|
id: "enable/extension";
|
|
581
584
|
rules: {
|
|
582
|
-
readonly "@typescript-eslint/dot-notation": readonly [
|
|
585
|
+
readonly "@typescript-eslint/dot-notation": readonly [2, {
|
|
583
586
|
readonly allowPrivateClassPropertyAccess: true;
|
|
584
587
|
readonly allowProtectedClassPropertyAccess: true;
|
|
585
588
|
readonly allowIndexSignaturePropertyAccess: true;
|
|
586
589
|
}];
|
|
587
|
-
readonly "@typescript-eslint/no-implied-eval":
|
|
588
|
-
readonly "@typescript-eslint/no-unused-vars":
|
|
589
|
-
readonly "@typescript-eslint/only-throw-error": readonly [
|
|
590
|
+
readonly "@typescript-eslint/no-implied-eval": 2;
|
|
591
|
+
readonly "@typescript-eslint/no-unused-vars": 2;
|
|
592
|
+
readonly "@typescript-eslint/only-throw-error": readonly [2, {
|
|
590
593
|
readonly allowThrowingAny: false;
|
|
591
594
|
}];
|
|
592
|
-
readonly "@typescript-eslint/prefer-destructuring": readonly [
|
|
595
|
+
readonly "@typescript-eslint/prefer-destructuring": readonly [2, {
|
|
593
596
|
readonly AssignmentExpression: {
|
|
594
597
|
readonly array: false;
|
|
595
598
|
readonly object: false;
|
|
596
599
|
};
|
|
597
600
|
}];
|
|
598
|
-
readonly "@typescript-eslint/prefer-promise-reject-errors": readonly [
|
|
601
|
+
readonly "@typescript-eslint/prefer-promise-reject-errors": readonly [2, {
|
|
599
602
|
readonly allowThrowingUnknown: true;
|
|
600
603
|
}];
|
|
601
|
-
readonly "@typescript-eslint/require-await":
|
|
604
|
+
readonly "@typescript-eslint/require-await": 2;
|
|
602
605
|
};
|
|
603
606
|
})[];
|
|
604
607
|
mocha: ({
|
|
605
608
|
id: "disable";
|
|
606
609
|
rules: {
|
|
607
|
-
readonly "prefer-arrow-callback":
|
|
608
|
-
readonly "no-unused-expressions":
|
|
610
|
+
readonly "prefer-arrow-callback": 0;
|
|
611
|
+
readonly "no-unused-expressions": 0;
|
|
609
612
|
};
|
|
610
613
|
} | {
|
|
611
614
|
id: "enable";
|
|
612
615
|
rules: {
|
|
613
|
-
readonly "mocha/handle-done-callback":
|
|
614
|
-
readonly "mocha/max-top-level-suites":
|
|
615
|
-
readonly "mocha/no-async-suite":
|
|
616
|
-
readonly "mocha/no-empty-title":
|
|
617
|
-
readonly "mocha/no-exclusive-tests":
|
|
618
|
-
readonly "mocha/no-exports":
|
|
619
|
-
readonly "mocha/no-global-tests":
|
|
620
|
-
readonly "mocha/no-identical-title":
|
|
621
|
-
readonly "mocha/no-mocha-arrows":
|
|
622
|
-
readonly "mocha/no-nested-tests":
|
|
623
|
-
readonly "mocha/no-pending-tests":
|
|
624
|
-
readonly "mocha/no-return-and-callback":
|
|
625
|
-
readonly "mocha/no-return-from-async":
|
|
626
|
-
readonly "mocha/no-sibling-hooks":
|
|
627
|
-
readonly "mocha/no-top-level-hooks":
|
|
628
|
-
readonly "mocha/prefer-arrow-callback":
|
|
616
|
+
readonly "mocha/handle-done-callback": 2;
|
|
617
|
+
readonly "mocha/max-top-level-suites": 2;
|
|
618
|
+
readonly "mocha/no-async-suite": 2;
|
|
619
|
+
readonly "mocha/no-empty-title": 2;
|
|
620
|
+
readonly "mocha/no-exclusive-tests": 2;
|
|
621
|
+
readonly "mocha/no-exports": 2;
|
|
622
|
+
readonly "mocha/no-global-tests": 2;
|
|
623
|
+
readonly "mocha/no-identical-title": 2;
|
|
624
|
+
readonly "mocha/no-mocha-arrows": 2;
|
|
625
|
+
readonly "mocha/no-nested-tests": 2;
|
|
626
|
+
readonly "mocha/no-pending-tests": 2;
|
|
627
|
+
readonly "mocha/no-return-and-callback": 2;
|
|
628
|
+
readonly "mocha/no-return-from-async": 2;
|
|
629
|
+
readonly "mocha/no-sibling-hooks": 2;
|
|
630
|
+
readonly "mocha/no-top-level-hooks": 2;
|
|
631
|
+
readonly "mocha/prefer-arrow-callback": 2;
|
|
629
632
|
};
|
|
630
633
|
} | {
|
|
631
634
|
id: string;
|
|
632
635
|
rules: {
|
|
633
|
-
readonly "chai-friendly/no-unused-expressions": readonly [
|
|
636
|
+
readonly "chai-friendly/no-unused-expressions": readonly [2, {
|
|
634
637
|
readonly allowShortCircuit: true;
|
|
635
638
|
readonly allowTernary: true;
|
|
636
639
|
}];
|
|
@@ -638,311 +641,310 @@ export declare const rules: {
|
|
|
638
641
|
} | {
|
|
639
642
|
id: string;
|
|
640
643
|
rules: {
|
|
641
|
-
readonly "chai-expect/no-inner-compare":
|
|
642
|
-
readonly "chai-expect/no-inner-literal":
|
|
643
|
-
readonly "chai-expect/missing-assertion":
|
|
644
|
+
readonly "chai-expect/no-inner-compare": 2;
|
|
645
|
+
readonly "chai-expect/no-inner-literal": 2;
|
|
646
|
+
readonly "chai-expect/missing-assertion": 2;
|
|
644
647
|
};
|
|
645
648
|
})[];
|
|
646
649
|
svelte: ({
|
|
647
650
|
id: "disable";
|
|
648
651
|
rules: {
|
|
649
|
-
readonly "no-inner-declarations":
|
|
650
|
-
readonly "no-self-assign":
|
|
651
|
-
readonly "no-unused-vars":
|
|
652
|
-
readonly "@typescript-eslint/no-unused-vars":
|
|
653
|
-
readonly "prefer-const":
|
|
654
|
-
readonly "@stylistic/indent":
|
|
652
|
+
readonly "no-inner-declarations": 0;
|
|
653
|
+
readonly "no-self-assign": 0;
|
|
654
|
+
readonly "no-unused-vars": 0;
|
|
655
|
+
readonly "@typescript-eslint/no-unused-vars": 0;
|
|
656
|
+
readonly "prefer-const": 0;
|
|
657
|
+
readonly "@stylistic/indent": 0;
|
|
655
658
|
};
|
|
656
659
|
} | {
|
|
657
660
|
id: "disable/extension";
|
|
658
661
|
rules: {
|
|
659
|
-
readonly "no-inner-declarations":
|
|
660
|
-
readonly "no-self-assign":
|
|
661
|
-
readonly "@stylistic/no-trailing-spaces":
|
|
662
|
+
readonly "no-inner-declarations": 0;
|
|
663
|
+
readonly "no-self-assign": 0;
|
|
664
|
+
readonly "@stylistic/no-trailing-spaces": 0;
|
|
662
665
|
};
|
|
663
666
|
} | {
|
|
664
667
|
id: "enable";
|
|
665
668
|
rules: {
|
|
666
|
-
readonly "svelte/infinite-reactive-loop":
|
|
667
|
-
readonly "svelte/no-dom-manipulating":
|
|
668
|
-
readonly "svelte/no-dupe-else-if-blocks":
|
|
669
|
-
readonly "svelte/no-dupe-on-directives":
|
|
670
|
-
readonly "svelte/no-dupe-style-properties":
|
|
671
|
-
readonly "svelte/no-dupe-use-directives":
|
|
672
|
-
readonly "svelte/no-not-function-handler":
|
|
673
|
-
readonly "svelte/no-object-in-text-mustaches":
|
|
674
|
-
readonly "svelte/no-raw-special-elements":
|
|
675
|
-
readonly "svelte/no-reactive-reassign":
|
|
676
|
-
readonly "svelte/no-shorthand-style-property-overrides":
|
|
677
|
-
readonly "svelte/no-store-async":
|
|
678
|
-
readonly "svelte/no-top-level-browser-globals":
|
|
679
|
-
readonly "svelte/no-unknown-style-directive-property":
|
|
680
|
-
readonly "svelte/prefer-svelte-reactivity":
|
|
681
|
-
readonly "svelte/require-store-callbacks-use-set-param":
|
|
682
|
-
readonly "svelte/require-store-reactive-access":
|
|
683
|
-
readonly "svelte/valid-compile":
|
|
684
|
-
readonly "svelte/valid-style-parse":
|
|
685
|
-
readonly "svelte/no-at-html-tags":
|
|
686
|
-
readonly "svelte/no-target-blank":
|
|
687
|
-
readonly "svelte/block-lang": readonly [
|
|
669
|
+
readonly "svelte/infinite-reactive-loop": 2;
|
|
670
|
+
readonly "svelte/no-dom-manipulating": 2;
|
|
671
|
+
readonly "svelte/no-dupe-else-if-blocks": 2;
|
|
672
|
+
readonly "svelte/no-dupe-on-directives": 2;
|
|
673
|
+
readonly "svelte/no-dupe-style-properties": 2;
|
|
674
|
+
readonly "svelte/no-dupe-use-directives": 2;
|
|
675
|
+
readonly "svelte/no-not-function-handler": 2;
|
|
676
|
+
readonly "svelte/no-object-in-text-mustaches": 2;
|
|
677
|
+
readonly "svelte/no-raw-special-elements": 2;
|
|
678
|
+
readonly "svelte/no-reactive-reassign": 2;
|
|
679
|
+
readonly "svelte/no-shorthand-style-property-overrides": 2;
|
|
680
|
+
readonly "svelte/no-store-async": 2;
|
|
681
|
+
readonly "svelte/no-top-level-browser-globals": 2;
|
|
682
|
+
readonly "svelte/no-unknown-style-directive-property": 2;
|
|
683
|
+
readonly "svelte/prefer-svelte-reactivity": 2;
|
|
684
|
+
readonly "svelte/require-store-callbacks-use-set-param": 2;
|
|
685
|
+
readonly "svelte/require-store-reactive-access": 2;
|
|
686
|
+
readonly "svelte/valid-compile": 2;
|
|
687
|
+
readonly "svelte/valid-style-parse": 2;
|
|
688
|
+
readonly "svelte/no-at-html-tags": 2;
|
|
689
|
+
readonly "svelte/no-target-blank": 2;
|
|
690
|
+
readonly "svelte/block-lang": readonly [2, {
|
|
688
691
|
readonly script: readonly ["ts"];
|
|
689
692
|
readonly style: readonly ["css"];
|
|
690
693
|
}];
|
|
691
|
-
readonly "svelte/button-has-type":
|
|
692
|
-
readonly "svelte/no-add-event-listener":
|
|
693
|
-
readonly "svelte/no-at-debug-tags":
|
|
694
|
-
readonly "svelte/no-ignored-unsubscribe":
|
|
695
|
-
readonly "svelte/no-immutable-reactive-statements":
|
|
696
|
-
readonly "svelte/no-inline-styles":
|
|
697
|
-
readonly "svelte/no-reactive-functions":
|
|
698
|
-
readonly "svelte/no-reactive-literals":
|
|
699
|
-
readonly "svelte/no-svelte-internal":
|
|
700
|
-
readonly "svelte/no-unnecessary-state-wrap":
|
|
701
|
-
readonly "svelte/no-unused-props": readonly [
|
|
694
|
+
readonly "svelte/button-has-type": 2;
|
|
695
|
+
readonly "svelte/no-add-event-listener": 2;
|
|
696
|
+
readonly "svelte/no-at-debug-tags": 2;
|
|
697
|
+
readonly "svelte/no-ignored-unsubscribe": 2;
|
|
698
|
+
readonly "svelte/no-immutable-reactive-statements": 2;
|
|
699
|
+
readonly "svelte/no-inline-styles": 2;
|
|
700
|
+
readonly "svelte/no-reactive-functions": 2;
|
|
701
|
+
readonly "svelte/no-reactive-literals": 2;
|
|
702
|
+
readonly "svelte/no-svelte-internal": 2;
|
|
703
|
+
readonly "svelte/no-unnecessary-state-wrap": 2;
|
|
704
|
+
readonly "svelte/no-unused-props": readonly [2, {
|
|
702
705
|
readonly checkImportedTypes: true;
|
|
703
706
|
}];
|
|
704
|
-
readonly "svelte/no-unused-svelte-ignore":
|
|
705
|
-
readonly "svelte/no-useless-children-snippet":
|
|
706
|
-
readonly "svelte/no-useless-mustaches":
|
|
707
|
-
readonly "svelte/prefer-const": readonly [
|
|
707
|
+
readonly "svelte/no-unused-svelte-ignore": 2;
|
|
708
|
+
readonly "svelte/no-useless-children-snippet": 2;
|
|
709
|
+
readonly "svelte/no-useless-mustaches": 2;
|
|
710
|
+
readonly "svelte/prefer-const": readonly [2, {
|
|
708
711
|
readonly destructuring: "all";
|
|
709
712
|
}];
|
|
710
|
-
readonly "svelte/prefer-destructured-store-props":
|
|
711
|
-
readonly "svelte/prefer-writable-derived":
|
|
712
|
-
readonly "svelte/require-each-key":
|
|
713
|
-
readonly "svelte/require-event-dispatcher-types":
|
|
714
|
-
readonly "svelte/require-optimized-style-attribute":
|
|
715
|
-
readonly "svelte/require-stores-init":
|
|
716
|
-
readonly "svelte/valid-each-key":
|
|
717
|
-
readonly "svelte/consistent-selector-style": readonly [
|
|
713
|
+
readonly "svelte/prefer-destructured-store-props": 2;
|
|
714
|
+
readonly "svelte/prefer-writable-derived": 2;
|
|
715
|
+
readonly "svelte/require-each-key": 2;
|
|
716
|
+
readonly "svelte/require-event-dispatcher-types": 2;
|
|
717
|
+
readonly "svelte/require-optimized-style-attribute": 2;
|
|
718
|
+
readonly "svelte/require-stores-init": 2;
|
|
719
|
+
readonly "svelte/valid-each-key": 2;
|
|
720
|
+
readonly "svelte/consistent-selector-style": readonly [2, {
|
|
718
721
|
readonly checkGlobal: true;
|
|
719
722
|
}];
|
|
720
|
-
readonly "svelte/derived-has-same-inputs-outputs":
|
|
721
|
-
readonly "svelte/first-attribute-linebreak": readonly [
|
|
723
|
+
readonly "svelte/derived-has-same-inputs-outputs": 2;
|
|
724
|
+
readonly "svelte/first-attribute-linebreak": readonly [2, {
|
|
722
725
|
readonly singleline: "below";
|
|
723
726
|
}];
|
|
724
|
-
readonly "svelte/html-closing-bracket-new-line":
|
|
725
|
-
readonly "svelte/html-closing-bracket-spacing": readonly [
|
|
727
|
+
readonly "svelte/html-closing-bracket-new-line": 2;
|
|
728
|
+
readonly "svelte/html-closing-bracket-spacing": readonly [2, {
|
|
726
729
|
readonly selfClosingTag: "never";
|
|
727
730
|
}];
|
|
728
|
-
readonly "svelte/html-quotes": readonly [
|
|
731
|
+
readonly "svelte/html-quotes": readonly [2, {
|
|
729
732
|
readonly prefer: "double";
|
|
730
733
|
readonly dynamic: {
|
|
731
734
|
readonly avoidInvalidUnquotedInHTML: true;
|
|
732
735
|
};
|
|
733
736
|
}];
|
|
734
|
-
readonly "svelte/html-self-closing":
|
|
735
|
-
readonly "svelte/indent":
|
|
736
|
-
readonly "svelte/max-attributes-per-line":
|
|
737
|
-
readonly "svelte/mustache-spacing":
|
|
738
|
-
readonly "svelte/no-extra-reactive-curlies":
|
|
739
|
-
readonly "svelte/no-spaces-around-equal-signs-in-attribute":
|
|
740
|
-
readonly "svelte/prefer-class-directive": readonly [
|
|
737
|
+
readonly "svelte/html-self-closing": 2;
|
|
738
|
+
readonly "svelte/indent": 2;
|
|
739
|
+
readonly "svelte/max-attributes-per-line": 2;
|
|
740
|
+
readonly "svelte/mustache-spacing": 2;
|
|
741
|
+
readonly "svelte/no-extra-reactive-curlies": 2;
|
|
742
|
+
readonly "svelte/no-spaces-around-equal-signs-in-attribute": 2;
|
|
743
|
+
readonly "svelte/prefer-class-directive": readonly [2, {
|
|
741
744
|
readonly prefer: "empty";
|
|
742
745
|
}];
|
|
743
|
-
readonly "svelte/prefer-style-directive":
|
|
744
|
-
readonly "svelte/require-event-prefix":
|
|
745
|
-
readonly "svelte/shorthand-attribute":
|
|
746
|
-
readonly "svelte/shorthand-directive":
|
|
747
|
-
readonly "svelte/spaced-html-comment":
|
|
748
|
-
readonly "svelte/no-export-load-in-svelte-module-in-kit-pages":
|
|
749
|
-
readonly "svelte/no-navigation-without-resolve":
|
|
750
|
-
readonly "svelte/valid-prop-names-in-kit-pages":
|
|
751
|
-
readonly "svelte/comment-directive":
|
|
752
|
-
readonly "svelte/system":
|
|
746
|
+
readonly "svelte/prefer-style-directive": 2;
|
|
747
|
+
readonly "svelte/require-event-prefix": 2;
|
|
748
|
+
readonly "svelte/shorthand-attribute": 2;
|
|
749
|
+
readonly "svelte/shorthand-directive": 2;
|
|
750
|
+
readonly "svelte/spaced-html-comment": 2;
|
|
751
|
+
readonly "svelte/no-export-load-in-svelte-module-in-kit-pages": 2;
|
|
752
|
+
readonly "svelte/no-navigation-without-resolve": 2;
|
|
753
|
+
readonly "svelte/valid-prop-names-in-kit-pages": 2;
|
|
754
|
+
readonly "svelte/comment-directive": 2;
|
|
755
|
+
readonly "svelte/system": 2;
|
|
753
756
|
};
|
|
754
757
|
} | {
|
|
755
758
|
id: "enable/extension";
|
|
756
759
|
rules: {
|
|
757
|
-
readonly "svelte/no-inner-declarations": readonly [
|
|
758
|
-
readonly "svelte/no-trailing-spaces":
|
|
760
|
+
readonly "svelte/no-inner-declarations": readonly [2, "both"];
|
|
761
|
+
readonly "svelte/no-trailing-spaces": 2;
|
|
759
762
|
};
|
|
760
763
|
})[];
|
|
761
764
|
html: {
|
|
762
765
|
id: "enable/plugin";
|
|
763
766
|
rules: {
|
|
764
|
-
readonly "@html-eslint/no-duplicate-attrs":
|
|
765
|
-
readonly "@html-eslint/no-duplicate-class":
|
|
766
|
-
readonly "@html-eslint/no-duplicate-id":
|
|
767
|
-
readonly "@html-eslint/no-duplicate-in-head":
|
|
768
|
-
readonly "@html-eslint/no-ineffective-attrs":
|
|
769
|
-
readonly "@html-eslint/no-invalid-entity":
|
|
770
|
-
readonly "@html-eslint/no-nested-interactive":
|
|
771
|
-
readonly "@html-eslint/no-obsolete-tags":
|
|
772
|
-
readonly "@html-eslint/no-target-blank":
|
|
773
|
-
readonly "@html-eslint/require-button-type":
|
|
774
|
-
readonly "@html-eslint/require-closing-tags":
|
|
775
|
-
readonly "@html-eslint/require-doctype":
|
|
776
|
-
readonly "@html-eslint/require-li-container":
|
|
777
|
-
readonly "@html-eslint/require-meta-charset":
|
|
778
|
-
readonly "@html-eslint/use-baseline":
|
|
779
|
-
readonly "@html-eslint/no-multiple-h1":
|
|
780
|
-
readonly "@html-eslint/require-lang":
|
|
781
|
-
readonly "@html-eslint/no-abstract-roles":
|
|
782
|
-
readonly "@html-eslint/no-accesskey-attrs":
|
|
783
|
-
readonly "@html-eslint/no-aria-hidden-body":
|
|
784
|
-
readonly "@html-eslint/no-aria-hidden-on-focusable":
|
|
785
|
-
readonly "@html-eslint/no-empty-headings":
|
|
786
|
-
readonly "@html-eslint/no-heading-inside-button":
|
|
787
|
-
readonly "@html-eslint/no-invalid-role":
|
|
788
|
-
readonly "@html-eslint/no-non-scalable-viewport":
|
|
789
|
-
readonly "@html-eslint/no-positive-tabindex":
|
|
790
|
-
readonly "@html-eslint/no-skip-heading-levels":
|
|
791
|
-
readonly "@html-eslint/require-form-method":
|
|
792
|
-
readonly "@html-eslint/require-frame-title":
|
|
793
|
-
readonly "@html-eslint/require-img-alt":
|
|
794
|
-
readonly "@html-eslint/require-input-label":
|
|
795
|
-
readonly "@html-eslint/require-meta-viewport":
|
|
796
|
-
readonly "@html-eslint/attrs-newline": readonly [
|
|
767
|
+
readonly "@html-eslint/no-duplicate-attrs": 2;
|
|
768
|
+
readonly "@html-eslint/no-duplicate-class": 2;
|
|
769
|
+
readonly "@html-eslint/no-duplicate-id": 2;
|
|
770
|
+
readonly "@html-eslint/no-duplicate-in-head": 2;
|
|
771
|
+
readonly "@html-eslint/no-ineffective-attrs": 2;
|
|
772
|
+
readonly "@html-eslint/no-invalid-entity": 2;
|
|
773
|
+
readonly "@html-eslint/no-nested-interactive": 2;
|
|
774
|
+
readonly "@html-eslint/no-obsolete-tags": 2;
|
|
775
|
+
readonly "@html-eslint/no-target-blank": 2;
|
|
776
|
+
readonly "@html-eslint/require-button-type": 2;
|
|
777
|
+
readonly "@html-eslint/require-closing-tags": 2;
|
|
778
|
+
readonly "@html-eslint/require-doctype": 2;
|
|
779
|
+
readonly "@html-eslint/require-li-container": 2;
|
|
780
|
+
readonly "@html-eslint/require-meta-charset": 2;
|
|
781
|
+
readonly "@html-eslint/use-baseline": 2;
|
|
782
|
+
readonly "@html-eslint/no-multiple-h1": 2;
|
|
783
|
+
readonly "@html-eslint/require-lang": 2;
|
|
784
|
+
readonly "@html-eslint/no-abstract-roles": 2;
|
|
785
|
+
readonly "@html-eslint/no-accesskey-attrs": 2;
|
|
786
|
+
readonly "@html-eslint/no-aria-hidden-body": 2;
|
|
787
|
+
readonly "@html-eslint/no-aria-hidden-on-focusable": 2;
|
|
788
|
+
readonly "@html-eslint/no-empty-headings": 2;
|
|
789
|
+
readonly "@html-eslint/no-heading-inside-button": 2;
|
|
790
|
+
readonly "@html-eslint/no-invalid-role": 2;
|
|
791
|
+
readonly "@html-eslint/no-non-scalable-viewport": 2;
|
|
792
|
+
readonly "@html-eslint/no-positive-tabindex": 2;
|
|
793
|
+
readonly "@html-eslint/no-skip-heading-levels": 2;
|
|
794
|
+
readonly "@html-eslint/require-form-method": 2;
|
|
795
|
+
readonly "@html-eslint/require-frame-title": 2;
|
|
796
|
+
readonly "@html-eslint/require-img-alt": 2;
|
|
797
|
+
readonly "@html-eslint/require-input-label": 2;
|
|
798
|
+
readonly "@html-eslint/require-meta-viewport": 2;
|
|
799
|
+
readonly "@html-eslint/attrs-newline": readonly [2, {
|
|
797
800
|
readonly ifAttrsMoreThan: 0;
|
|
798
801
|
}];
|
|
799
|
-
readonly "@html-eslint/element-newline": readonly [
|
|
802
|
+
readonly "@html-eslint/element-newline": readonly [2, {
|
|
800
803
|
readonly skip: readonly ["head"];
|
|
801
804
|
readonly inline: readonly ["$inline"];
|
|
802
805
|
}];
|
|
803
|
-
readonly "@html-eslint/indent": readonly [
|
|
804
|
-
readonly "@html-eslint/lowercase":
|
|
805
|
-
readonly "@html-eslint/no-extra-spacing-attrs": readonly [
|
|
806
|
+
readonly "@html-eslint/indent": readonly [2, 2];
|
|
807
|
+
readonly "@html-eslint/lowercase": 2;
|
|
808
|
+
readonly "@html-eslint/no-extra-spacing-attrs": readonly [2, {
|
|
806
809
|
readonly disallowMissing: true;
|
|
807
810
|
readonly disallowTabs: true;
|
|
808
811
|
readonly disallowInAssignment: true;
|
|
809
812
|
}];
|
|
810
|
-
readonly "@html-eslint/no-extra-spacing-text":
|
|
811
|
-
readonly "@html-eslint/no-multiple-empty-lines": readonly [
|
|
813
|
+
readonly "@html-eslint/no-extra-spacing-text": 2;
|
|
814
|
+
readonly "@html-eslint/no-multiple-empty-lines": readonly [2, {
|
|
812
815
|
readonly max: 1;
|
|
813
816
|
}];
|
|
814
|
-
readonly "@html-eslint/no-trailing-spaces":
|
|
815
|
-
readonly "@html-eslint/quotes":
|
|
817
|
+
readonly "@html-eslint/no-trailing-spaces": 2;
|
|
818
|
+
readonly "@html-eslint/quotes": 2;
|
|
816
819
|
};
|
|
817
820
|
}[];
|
|
818
821
|
css: {
|
|
819
822
|
id: "enable";
|
|
820
823
|
rules: {
|
|
821
|
-
readonly "css/font-family-fallbacks":
|
|
822
|
-
readonly "css/no-duplicate-imports":
|
|
823
|
-
readonly "css/no-duplicate-keyframe-selectors":
|
|
824
|
-
readonly "css/no-empty-blocks":
|
|
825
|
-
readonly "css/no-important":
|
|
826
|
-
readonly "css/no-invalid-at-rule-placement":
|
|
827
|
-
readonly "css/no-invalid-at-rules":
|
|
828
|
-
readonly "css/no-invalid-named-grid-areas":
|
|
829
|
-
readonly "css/prefer-logical-properties":
|
|
830
|
-
readonly "css/relative-font-units":
|
|
831
|
-
readonly "css/use-baseline":
|
|
824
|
+
readonly "css/font-family-fallbacks": 2;
|
|
825
|
+
readonly "css/no-duplicate-imports": 2;
|
|
826
|
+
readonly "css/no-duplicate-keyframe-selectors": 2;
|
|
827
|
+
readonly "css/no-empty-blocks": 2;
|
|
828
|
+
readonly "css/no-important": 2;
|
|
829
|
+
readonly "css/no-invalid-at-rule-placement": 2;
|
|
830
|
+
readonly "css/no-invalid-at-rules": 2;
|
|
831
|
+
readonly "css/no-invalid-named-grid-areas": 2;
|
|
832
|
+
readonly "css/prefer-logical-properties": 2;
|
|
833
|
+
readonly "css/relative-font-units": 2;
|
|
834
|
+
readonly "css/use-baseline": 2;
|
|
832
835
|
};
|
|
833
836
|
}[];
|
|
834
837
|
json: ({
|
|
835
838
|
id: "enable";
|
|
836
839
|
rules: {
|
|
837
|
-
readonly "json/no-duplicate-keys":
|
|
838
|
-
readonly "json/no-unsafe-values":
|
|
839
|
-
readonly "json/no-unnormalized-keys":
|
|
840
|
-
readonly "json/top-level-interop":
|
|
840
|
+
readonly "json/no-duplicate-keys": 2;
|
|
841
|
+
readonly "json/no-unsafe-values": 2;
|
|
842
|
+
readonly "json/no-unnormalized-keys": 2;
|
|
843
|
+
readonly "json/top-level-interop": 2;
|
|
841
844
|
};
|
|
842
845
|
} | {
|
|
843
846
|
id: "enable/plugin";
|
|
844
847
|
rules: {
|
|
845
|
-
readonly "jsonc/no-bigint-literals":
|
|
846
|
-
readonly "jsonc/no-binary-expression":
|
|
847
|
-
readonly "jsonc/no-binary-numeric-literals":
|
|
848
|
-
readonly "jsonc/no-comments":
|
|
849
|
-
readonly "jsonc/no-escape-sequence-in-identifier":
|
|
850
|
-
readonly "jsonc/no-hexadecimal-numeric-literals":
|
|
851
|
-
readonly "jsonc/no-infinity":
|
|
852
|
-
readonly "jsonc/no-nan":
|
|
853
|
-
readonly "jsonc/no-number-props":
|
|
854
|
-
readonly "jsonc/no-numeric-separators":
|
|
855
|
-
readonly "jsonc/no-octal-numeric-literals":
|
|
856
|
-
readonly "jsonc/no-parenthesized":
|
|
857
|
-
readonly "jsonc/no-plus-sign":
|
|
858
|
-
readonly "jsonc/no-regexp-literals":
|
|
859
|
-
readonly "jsonc/no-template-literals":
|
|
860
|
-
readonly "jsonc/no-undefined-value":
|
|
861
|
-
readonly "jsonc/no-unicode-codepoint-escapes":
|
|
862
|
-
readonly "jsonc/valid-json-number":
|
|
863
|
-
readonly "jsonc/vue-custom-block/no-parsing-error":
|
|
848
|
+
readonly "jsonc/no-bigint-literals": 2;
|
|
849
|
+
readonly "jsonc/no-binary-expression": 2;
|
|
850
|
+
readonly "jsonc/no-binary-numeric-literals": 2;
|
|
851
|
+
readonly "jsonc/no-comments": 2;
|
|
852
|
+
readonly "jsonc/no-escape-sequence-in-identifier": 2;
|
|
853
|
+
readonly "jsonc/no-hexadecimal-numeric-literals": 2;
|
|
854
|
+
readonly "jsonc/no-infinity": 2;
|
|
855
|
+
readonly "jsonc/no-nan": 2;
|
|
856
|
+
readonly "jsonc/no-number-props": 2;
|
|
857
|
+
readonly "jsonc/no-numeric-separators": 2;
|
|
858
|
+
readonly "jsonc/no-octal-numeric-literals": 2;
|
|
859
|
+
readonly "jsonc/no-parenthesized": 2;
|
|
860
|
+
readonly "jsonc/no-plus-sign": 2;
|
|
861
|
+
readonly "jsonc/no-regexp-literals": 2;
|
|
862
|
+
readonly "jsonc/no-template-literals": 2;
|
|
863
|
+
readonly "jsonc/no-undefined-value": 2;
|
|
864
|
+
readonly "jsonc/no-unicode-codepoint-escapes": 2;
|
|
865
|
+
readonly "jsonc/valid-json-number": 2;
|
|
866
|
+
readonly "jsonc/vue-custom-block/no-parsing-error": 2;
|
|
864
867
|
};
|
|
865
868
|
} | {
|
|
866
869
|
id: "enable/plugin/extension";
|
|
867
870
|
rules: {
|
|
868
|
-
readonly "jsonc/array-bracket-spacing":
|
|
869
|
-
readonly "jsonc/array-element-newline": readonly [
|
|
870
|
-
readonly "jsonc/comma-dangle":
|
|
871
|
-
readonly "jsonc/comma-style":
|
|
872
|
-
readonly "jsonc/indent": readonly [
|
|
873
|
-
readonly "jsonc/key-spacing":
|
|
874
|
-
readonly "jsonc/no-floating-decimal":
|
|
875
|
-
readonly "jsonc/no-irregular-whitespace": readonly [
|
|
871
|
+
readonly "jsonc/array-bracket-spacing": 2;
|
|
872
|
+
readonly "jsonc/array-element-newline": readonly [2, "consistent"];
|
|
873
|
+
readonly "jsonc/comma-dangle": 2;
|
|
874
|
+
readonly "jsonc/comma-style": 2;
|
|
875
|
+
readonly "jsonc/indent": readonly [2, 2];
|
|
876
|
+
readonly "jsonc/key-spacing": 2;
|
|
877
|
+
readonly "jsonc/no-floating-decimal": 2;
|
|
878
|
+
readonly "jsonc/no-irregular-whitespace": readonly [2, {
|
|
876
879
|
readonly skipStrings: true;
|
|
877
880
|
readonly skipComments: true;
|
|
878
881
|
readonly skipRegExps: true;
|
|
879
882
|
readonly skipTemplates: true;
|
|
880
883
|
readonly skipJSXText: true;
|
|
881
884
|
}];
|
|
882
|
-
readonly "jsonc/no-multi-str":
|
|
883
|
-
readonly "jsonc/no-octal-escape":
|
|
884
|
-
readonly "jsonc/no-octal":
|
|
885
|
-
readonly "jsonc/no-sparse-arrays":
|
|
886
|
-
readonly "jsonc/no-useless-escape":
|
|
887
|
-
readonly "jsonc/object-curly-newline": readonly [
|
|
885
|
+
readonly "jsonc/no-multi-str": 2;
|
|
886
|
+
readonly "jsonc/no-octal-escape": 2;
|
|
887
|
+
readonly "jsonc/no-octal": 2;
|
|
888
|
+
readonly "jsonc/no-sparse-arrays": 2;
|
|
889
|
+
readonly "jsonc/no-useless-escape": 2;
|
|
890
|
+
readonly "jsonc/object-curly-newline": readonly [2, {
|
|
888
891
|
readonly consistent: true;
|
|
889
892
|
readonly multiline: true;
|
|
890
893
|
readonly minProperties: 2;
|
|
891
894
|
}];
|
|
892
|
-
readonly "jsonc/object-curly-spacing": readonly [
|
|
893
|
-
readonly "jsonc/object-property-newline":
|
|
894
|
-
readonly "jsonc/quote-props":
|
|
895
|
-
readonly "jsonc/quotes":
|
|
896
|
-
readonly "jsonc/space-unary-ops":
|
|
895
|
+
readonly "jsonc/object-curly-spacing": readonly [2, "always"];
|
|
896
|
+
readonly "jsonc/object-property-newline": 2;
|
|
897
|
+
readonly "jsonc/quote-props": 2;
|
|
898
|
+
readonly "jsonc/quotes": 2;
|
|
899
|
+
readonly "jsonc/space-unary-ops": 2;
|
|
897
900
|
};
|
|
898
901
|
})[];
|
|
899
902
|
jsonc: {
|
|
900
903
|
id: "disable/plugin";
|
|
901
904
|
rules: {
|
|
902
|
-
readonly "jsonc/no-comments":
|
|
905
|
+
readonly "jsonc/no-comments": 0;
|
|
903
906
|
};
|
|
904
907
|
}[];
|
|
905
908
|
jsoncc: {
|
|
906
909
|
id: "disable/plugin";
|
|
907
910
|
rules: {
|
|
908
|
-
readonly "jsonc/comma-dangle": readonly [
|
|
911
|
+
readonly "jsonc/comma-dangle": readonly [2, "always-multiline"];
|
|
909
912
|
};
|
|
910
913
|
}[];
|
|
911
914
|
yml: ({
|
|
912
915
|
id: "enable/plugin";
|
|
913
916
|
rules: {
|
|
914
|
-
readonly "yml/block-mapping-colon-indicator-newline":
|
|
915
|
-
readonly "yml/block-mapping-question-indicator-newline":
|
|
916
|
-
readonly "yml/block-mapping":
|
|
917
|
-
readonly "yml/block-sequence-hyphen-indicator-newline":
|
|
918
|
-
readonly "yml/block-sequence":
|
|
919
|
-
readonly "yml/indent":
|
|
920
|
-
readonly "yml/no-empty-key":
|
|
921
|
-
readonly "yml/no-empty-sequence-entry":
|
|
922
|
-
readonly "yml/no-tab-indent":
|
|
923
|
-
readonly "yml/no-trailing-zeros":
|
|
924
|
-
readonly "yml/require-string-key":
|
|
925
|
-
readonly "yml/vue-custom-block/no-parsing-error": "error";
|
|
917
|
+
readonly "yml/block-mapping-colon-indicator-newline": 2;
|
|
918
|
+
readonly "yml/block-mapping-question-indicator-newline": 2;
|
|
919
|
+
readonly "yml/block-mapping": 2;
|
|
920
|
+
readonly "yml/block-sequence-hyphen-indicator-newline": 2;
|
|
921
|
+
readonly "yml/block-sequence": 2;
|
|
922
|
+
readonly "yml/indent": 2;
|
|
923
|
+
readonly "yml/no-empty-key": 2;
|
|
924
|
+
readonly "yml/no-empty-sequence-entry": 2;
|
|
925
|
+
readonly "yml/no-tab-indent": 2;
|
|
926
|
+
readonly "yml/no-trailing-zeros": 2;
|
|
927
|
+
readonly "yml/require-string-key": 2;
|
|
926
928
|
};
|
|
927
929
|
} | {
|
|
928
930
|
id: "enable/plugin/extension";
|
|
929
931
|
rules: {
|
|
930
|
-
readonly "yml/flow-mapping-curly-newline": readonly [
|
|
932
|
+
readonly "yml/flow-mapping-curly-newline": readonly [2, {
|
|
931
933
|
readonly consistent: true;
|
|
932
934
|
readonly multiline: true;
|
|
933
935
|
readonly minProperties: 2;
|
|
934
936
|
}];
|
|
935
|
-
readonly "yml/flow-mapping-curly-spacing": readonly [
|
|
936
|
-
readonly "yml/flow-sequence-bracket-newline":
|
|
937
|
-
readonly "yml/flow-sequence-bracket-spacing":
|
|
938
|
-
readonly "yml/key-spacing":
|
|
939
|
-
readonly "yml/no-irregular-whitespace":
|
|
940
|
-
readonly "yml/no-multiple-empty-lines": readonly [
|
|
937
|
+
readonly "yml/flow-mapping-curly-spacing": readonly [2, "always"];
|
|
938
|
+
readonly "yml/flow-sequence-bracket-newline": 2;
|
|
939
|
+
readonly "yml/flow-sequence-bracket-spacing": 2;
|
|
940
|
+
readonly "yml/key-spacing": 2;
|
|
941
|
+
readonly "yml/no-irregular-whitespace": 2;
|
|
942
|
+
readonly "yml/no-multiple-empty-lines": readonly [2, {
|
|
941
943
|
readonly max: 1;
|
|
942
944
|
readonly maxBOF: 0;
|
|
943
945
|
readonly maxEOF: 0;
|
|
944
946
|
}];
|
|
945
|
-
readonly "yml/spaced-comment": readonly [
|
|
947
|
+
readonly "yml/spaced-comment": readonly [2, "always", {
|
|
946
948
|
readonly exceptions: readonly ["#"];
|
|
947
949
|
readonly markers: readonly ["-", "#", "##", "###", "####", "#####", "region", "endregion"];
|
|
948
950
|
}];
|