@eslinted/defaults 17.10.0 → 18.0.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +246 -265
- package/dist/index.d.ts.map +1 -1
- package/dist/rules/css/index.d.ts +9 -9
- package/dist/rules/css/index.js +9 -9
- package/dist/rules/css/index.js.map +1 -1
- package/dist/rules/html/index.d.ts +42 -42
- package/dist/rules/html/index.d.ts.map +1 -1
- package/dist/rules/html/index.js +42 -42
- package/dist/rules/html/index.js.map +1 -1
- package/dist/rules/index.d.ts +246 -265
- package/dist/rules/index.d.ts.map +1 -1
- package/dist/rules/js.d.ts +112 -119
- package/dist/rules/js.d.ts.map +1 -1
- package/dist/rules/js.eslint.d.ts +45 -52
- package/dist/rules/js.eslint.d.ts.map +1 -1
- package/dist/rules/js.eslint.js +45 -52
- package/dist/rules/js.eslint.js.map +1 -1
- package/dist/rules/js.stylistic.d.ts +67 -67
- package/dist/rules/js.stylistic.d.ts.map +1 -1
- package/dist/rules/js.stylistic.js +67 -67
- package/dist/rules/js.stylistic.js.map +1 -1
- package/dist/rules/json/index.d.ts +8 -11
- package/dist/rules/json/index.d.ts.map +1 -1
- package/dist/rules/json/plugin/extend.d.ts +8 -11
- package/dist/rules/json/plugin/extend.d.ts.map +1 -1
- package/dist/rules/json/plugin/extend.js +8 -11
- package/dist/rules/json/plugin/extend.js.map +1 -1
- package/dist/rules/jsoncc/index.d.ts +1 -1
- package/dist/rules/jsoncc/index.js +1 -1
- package/dist/rules/svelte/extend.d.ts +1 -1
- package/dist/rules/svelte/extend.js +1 -1
- package/dist/rules/svelte/extend.js.map +1 -1
- package/dist/rules/svelte/index.d.ts +24 -24
- package/dist/rules/svelte/svelte.d.ts +23 -23
- package/dist/rules/svelte/svelte.js +23 -23
- package/dist/rules/svelte/svelte.js.map +1 -1
- package/dist/rules/ts/extend.d.ts +4 -13
- package/dist/rules/ts/extend.d.ts.map +1 -1
- package/dist/rules/ts/extend.js +4 -13
- package/dist/rules/ts/extend.js.map +1 -1
- package/dist/rules/ts/index.d.ts +31 -41
- package/dist/rules/ts/index.d.ts.map +1 -1
- package/dist/rules/ts/ts.d.ts +27 -28
- package/dist/rules/ts/ts.d.ts.map +1 -1
- package/dist/rules/ts/ts.js +27 -28
- package/dist/rules/ts/ts.js.map +1 -1
- package/dist/rules/yml/extend.d.ts +7 -7
- package/dist/rules/yml/extend.js +7 -7
- package/dist/rules/yml/extend.js.map +1 -1
- package/dist/rules/yml/index.d.ts +19 -18
- package/dist/rules/yml/index.d.ts.map +1 -1
- package/dist/rules/yml/yml.d.ts +12 -11
- package/dist/rules/yml/yml.d.ts.map +1 -1
- package/dist/rules/yml/yml.js +12 -11
- package/dist/rules/yml/yml.js.map +1 -1
- package/package.json +1 -1
- package/src/rules/css/index.ts +11 -11
- package/src/rules/html/index.ts +50 -58
- package/src/rules/js.eslint.ts +143 -162
- package/src/rules/js.stylistic.ts +87 -88
- package/src/rules/json/json.ts +3 -3
- package/src/rules/json/plugin/extend.ts +11 -14
- package/src/rules/json/plugin/index.ts +3 -3
- package/src/rules/jsonc/index.ts +1 -1
- package/src/rules/jsoncc/index.ts +2 -2
- package/src/rules/svelte/disable.ts +3 -3
- package/src/rules/svelte/extend.ts +3 -3
- package/src/rules/svelte/svelte.ts +26 -26
- package/src/rules/ts/disable.ts +4 -4
- package/src/rules/ts/extend.ts +7 -15
- package/src/rules/ts/ts.ts +44 -44
- package/src/rules/yml/extend.ts +7 -7
- package/src/rules/yml/yml.ts +15 -15
package/dist/rules/ts/index.d.ts
CHANGED
|
@@ -23,21 +23,21 @@ declare const _default: ({
|
|
|
23
23
|
} | {
|
|
24
24
|
rules: {
|
|
25
25
|
readonly "ts/await-thenable": import("../state.js").State.ON;
|
|
26
|
-
readonly "ts/ban-ts-comment": import("../state.js").State.
|
|
27
|
-
readonly "ts/ban-tslint-comment": import("../state.js").State.
|
|
28
|
-
readonly "ts/class-literal-property-style": import("../state.js").State.
|
|
29
|
-
readonly "ts/consistent-generic-constructors": import("../state.js").State.
|
|
26
|
+
readonly "ts/ban-ts-comment": import("../state.js").State.WARN;
|
|
27
|
+
readonly "ts/ban-tslint-comment": import("../state.js").State.WARN;
|
|
28
|
+
readonly "ts/class-literal-property-style": import("../state.js").State.WARN;
|
|
29
|
+
readonly "ts/consistent-generic-constructors": import("../state.js").State.WARN;
|
|
30
30
|
readonly "ts/consistent-type-assertions": readonly [
|
|
31
|
-
import("../state.js").State.
|
|
31
|
+
import("../state.js").State.WARN,
|
|
32
32
|
{
|
|
33
33
|
readonly arrayLiteralTypeAssertions: "never";
|
|
34
34
|
readonly objectLiteralTypeAssertions: "never";
|
|
35
35
|
}
|
|
36
36
|
];
|
|
37
|
-
readonly "ts/consistent-type-exports": import("../state.js").State.
|
|
38
|
-
readonly "ts/consistent-type-imports": import("../state.js").State.
|
|
37
|
+
readonly "ts/consistent-type-exports": import("../state.js").State.WARN;
|
|
38
|
+
readonly "ts/consistent-type-imports": import("../state.js").State.WARN;
|
|
39
39
|
readonly "ts/explicit-member-accessibility": readonly [
|
|
40
|
-
import("../state.js").State.
|
|
40
|
+
import("../state.js").State.WARN,
|
|
41
41
|
{
|
|
42
42
|
readonly overrides: {
|
|
43
43
|
readonly constructors: "no-public";
|
|
@@ -45,14 +45,14 @@ declare const _default: ({
|
|
|
45
45
|
}
|
|
46
46
|
];
|
|
47
47
|
readonly "ts/member-ordering": readonly [
|
|
48
|
-
import("../state.js").State.
|
|
48
|
+
import("../state.js").State.WARN,
|
|
49
49
|
{
|
|
50
50
|
readonly default: {
|
|
51
51
|
readonly optionalityOrder: "required-first";
|
|
52
52
|
};
|
|
53
53
|
}
|
|
54
54
|
];
|
|
55
|
-
readonly "ts/method-signature-style": import("../state.js").State.
|
|
55
|
+
readonly "ts/method-signature-style": import("../state.js").State.WARN;
|
|
56
56
|
readonly "ts/no-array-delete": import("../state.js").State.ON;
|
|
57
57
|
readonly "ts/no-base-to-string": import("../state.js").State.ON;
|
|
58
58
|
readonly "ts/no-confusing-non-null-assertion": import("../state.js").State.ON;
|
|
@@ -122,30 +122,30 @@ declare const _default: ({
|
|
|
122
122
|
];
|
|
123
123
|
readonly "ts/no-unsafe-return": import("../state.js").State.ON;
|
|
124
124
|
readonly "ts/no-unsafe-unary-minus": import("../state.js").State.ON;
|
|
125
|
-
readonly "ts/no-unused-private-class-members": import("../state.js").State.
|
|
126
|
-
readonly "ts/no-useless-empty-export": import("../state.js").State.
|
|
125
|
+
readonly "ts/no-unused-private-class-members": import("../state.js").State.WARN;
|
|
126
|
+
readonly "ts/no-useless-empty-export": import("../state.js").State.WARN;
|
|
127
127
|
readonly "ts/no-wrapper-object-types": import("../state.js").State.ON;
|
|
128
128
|
readonly "ts/parameter-properties": readonly [
|
|
129
|
-
import("../state.js").State.
|
|
129
|
+
import("../state.js").State.WARN,
|
|
130
130
|
{
|
|
131
131
|
readonly prefer: "parameter-property";
|
|
132
132
|
}
|
|
133
133
|
];
|
|
134
|
-
readonly "ts/prefer-as-const": import("../state.js").State.
|
|
135
|
-
readonly "ts/prefer-find": import("../state.js").State.
|
|
136
|
-
readonly "ts/prefer-for-of": import("../state.js").State.
|
|
137
|
-
readonly "ts/prefer-function-type": import("../state.js").State.
|
|
138
|
-
readonly "ts/prefer-includes": import("../state.js").State.
|
|
139
|
-
readonly "ts/prefer-namespace-keyword": import("../state.js").State.
|
|
134
|
+
readonly "ts/prefer-as-const": import("../state.js").State.WARN;
|
|
135
|
+
readonly "ts/prefer-find": import("../state.js").State.WARN;
|
|
136
|
+
readonly "ts/prefer-for-of": import("../state.js").State.WARN;
|
|
137
|
+
readonly "ts/prefer-function-type": import("../state.js").State.WARN;
|
|
138
|
+
readonly "ts/prefer-includes": import("../state.js").State.WARN;
|
|
139
|
+
readonly "ts/prefer-namespace-keyword": import("../state.js").State.WARN;
|
|
140
140
|
readonly "ts/prefer-nullish-coalescing": readonly [
|
|
141
|
-
import("../state.js").State.
|
|
141
|
+
import("../state.js").State.WARN,
|
|
142
142
|
{
|
|
143
143
|
readonly ignoreMixedLogicalExpressions: true;
|
|
144
144
|
readonly ignorePrimitives: true;
|
|
145
145
|
}
|
|
146
146
|
];
|
|
147
147
|
readonly "ts/prefer-optional-chain": readonly [
|
|
148
|
-
import("../state.js").State.
|
|
148
|
+
import("../state.js").State.WARN,
|
|
149
149
|
{
|
|
150
150
|
readonly checkBigInt: false;
|
|
151
151
|
readonly checkBoolean: false;
|
|
@@ -153,14 +153,13 @@ declare const _default: ({
|
|
|
153
153
|
readonly checkString: false;
|
|
154
154
|
}
|
|
155
155
|
];
|
|
156
|
-
readonly "ts/prefer-readonly": import("../state.js").State.
|
|
157
|
-
readonly "ts/prefer-reduce-type-parameter": import("../state.js").State.
|
|
158
|
-
readonly "ts/prefer-regexp-exec": import("../state.js").State.
|
|
159
|
-
readonly "ts/prefer-return-this-type": import("../state.js").State.
|
|
160
|
-
readonly "ts/prefer-string-starts-ends-with": import("../state.js").State.
|
|
156
|
+
readonly "ts/prefer-readonly": import("../state.js").State.WARN;
|
|
157
|
+
readonly "ts/prefer-reduce-type-parameter": import("../state.js").State.WARN;
|
|
158
|
+
readonly "ts/prefer-regexp-exec": import("../state.js").State.WARN;
|
|
159
|
+
readonly "ts/prefer-return-this-type": import("../state.js").State.WARN;
|
|
160
|
+
readonly "ts/prefer-string-starts-ends-with": import("../state.js").State.WARN;
|
|
161
161
|
readonly "ts/promise-function-async": import("../state.js").State.ON;
|
|
162
|
-
readonly "ts/
|
|
163
|
-
readonly "ts/require-array-sort-compare": import("../state.js").State.ON;
|
|
162
|
+
readonly "ts/require-array-sort-compare": import("../state.js").State.WARN;
|
|
164
163
|
readonly "ts/restrict-plus-operands": readonly [
|
|
165
164
|
import("../state.js").State.ON,
|
|
166
165
|
{
|
|
@@ -207,7 +206,7 @@ declare const _default: ({
|
|
|
207
206
|
rules: {
|
|
208
207
|
readonly "dot-notation": import("../state.js").State.OFF;
|
|
209
208
|
readonly "ts/dot-notation": readonly [
|
|
210
|
-
import("../state.js").State.
|
|
209
|
+
import("../state.js").State.WARN,
|
|
211
210
|
{
|
|
212
211
|
readonly allowPrivateClassPropertyAccess: true;
|
|
213
212
|
readonly allowProtectedClassPropertyAccess: true;
|
|
@@ -218,27 +217,18 @@ declare const _default: ({
|
|
|
218
217
|
readonly "ts/no-implied-eval": import("../state.js").State.ON;
|
|
219
218
|
readonly "no-restricted-imports": import("../state.js").State.OFF;
|
|
220
219
|
readonly "no-unused-vars": import("../state.js").State.OFF;
|
|
221
|
-
readonly "ts/no-unused-vars": import("../state.js").State.
|
|
220
|
+
readonly "ts/no-unused-vars": import("../state.js").State.WARN;
|
|
222
221
|
readonly "no-throw-literal": import("../state.js").State.OFF;
|
|
223
222
|
readonly "ts/only-throw-error": readonly [
|
|
224
|
-
import("../state.js").State.
|
|
223
|
+
import("../state.js").State.WARN,
|
|
225
224
|
{
|
|
226
225
|
readonly allowThrowingAny: false;
|
|
227
226
|
}
|
|
228
227
|
];
|
|
229
228
|
readonly "prefer-destructuring": import("../state.js").State.OFF;
|
|
230
|
-
readonly "ts/prefer-destructuring": readonly [
|
|
231
|
-
import("../state.js").State.ON,
|
|
232
|
-
{
|
|
233
|
-
readonly AssignmentExpression: {
|
|
234
|
-
readonly array: false;
|
|
235
|
-
readonly object: false;
|
|
236
|
-
};
|
|
237
|
-
}
|
|
238
|
-
];
|
|
239
229
|
readonly "prefer-promise-reject-errors": import("../state.js").State.OFF;
|
|
240
230
|
readonly "ts/prefer-promise-reject-errors": readonly [
|
|
241
|
-
import("../state.js").State.
|
|
231
|
+
import("../state.js").State.WARN,
|
|
242
232
|
{
|
|
243
233
|
readonly allowThrowingUnknown: true;
|
|
244
234
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/rules/ts/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/rules/ts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAIA,wBAIE"}
|
package/dist/rules/ts/ts.d.ts
CHANGED
|
@@ -2,21 +2,21 @@ import { State } from "../state.js";
|
|
|
2
2
|
declare const _default: {
|
|
3
3
|
rules: {
|
|
4
4
|
readonly "ts/await-thenable": State.ON;
|
|
5
|
-
readonly "ts/ban-ts-comment": State.
|
|
6
|
-
readonly "ts/ban-tslint-comment": State.
|
|
7
|
-
readonly "ts/class-literal-property-style": State.
|
|
8
|
-
readonly "ts/consistent-generic-constructors": State.
|
|
5
|
+
readonly "ts/ban-ts-comment": State.WARN;
|
|
6
|
+
readonly "ts/ban-tslint-comment": State.WARN;
|
|
7
|
+
readonly "ts/class-literal-property-style": State.WARN;
|
|
8
|
+
readonly "ts/consistent-generic-constructors": State.WARN;
|
|
9
9
|
readonly "ts/consistent-type-assertions": readonly [
|
|
10
|
-
State.
|
|
10
|
+
State.WARN,
|
|
11
11
|
{
|
|
12
12
|
readonly arrayLiteralTypeAssertions: "never";
|
|
13
13
|
readonly objectLiteralTypeAssertions: "never";
|
|
14
14
|
}
|
|
15
15
|
];
|
|
16
|
-
readonly "ts/consistent-type-exports": State.
|
|
17
|
-
readonly "ts/consistent-type-imports": State.
|
|
16
|
+
readonly "ts/consistent-type-exports": State.WARN;
|
|
17
|
+
readonly "ts/consistent-type-imports": State.WARN;
|
|
18
18
|
readonly "ts/explicit-member-accessibility": readonly [
|
|
19
|
-
State.
|
|
19
|
+
State.WARN,
|
|
20
20
|
{
|
|
21
21
|
readonly overrides: {
|
|
22
22
|
readonly constructors: "no-public";
|
|
@@ -24,14 +24,14 @@ declare const _default: {
|
|
|
24
24
|
}
|
|
25
25
|
];
|
|
26
26
|
readonly "ts/member-ordering": readonly [
|
|
27
|
-
State.
|
|
27
|
+
State.WARN,
|
|
28
28
|
{
|
|
29
29
|
readonly default: {
|
|
30
30
|
readonly optionalityOrder: "required-first";
|
|
31
31
|
};
|
|
32
32
|
}
|
|
33
33
|
];
|
|
34
|
-
readonly "ts/method-signature-style": State.
|
|
34
|
+
readonly "ts/method-signature-style": State.WARN;
|
|
35
35
|
readonly "ts/no-array-delete": State.ON;
|
|
36
36
|
readonly "ts/no-base-to-string": State.ON;
|
|
37
37
|
readonly "ts/no-confusing-non-null-assertion": State.ON;
|
|
@@ -101,30 +101,30 @@ declare const _default: {
|
|
|
101
101
|
];
|
|
102
102
|
readonly "ts/no-unsafe-return": State.ON;
|
|
103
103
|
readonly "ts/no-unsafe-unary-minus": State.ON;
|
|
104
|
-
readonly "ts/no-unused-private-class-members": State.
|
|
105
|
-
readonly "ts/no-useless-empty-export": State.
|
|
104
|
+
readonly "ts/no-unused-private-class-members": State.WARN;
|
|
105
|
+
readonly "ts/no-useless-empty-export": State.WARN;
|
|
106
106
|
readonly "ts/no-wrapper-object-types": State.ON;
|
|
107
107
|
readonly "ts/parameter-properties": readonly [
|
|
108
|
-
State.
|
|
108
|
+
State.WARN,
|
|
109
109
|
{
|
|
110
110
|
readonly prefer: "parameter-property";
|
|
111
111
|
}
|
|
112
112
|
];
|
|
113
|
-
readonly "ts/prefer-as-const": State.
|
|
114
|
-
readonly "ts/prefer-find": State.
|
|
115
|
-
readonly "ts/prefer-for-of": State.
|
|
116
|
-
readonly "ts/prefer-function-type": State.
|
|
117
|
-
readonly "ts/prefer-includes": State.
|
|
118
|
-
readonly "ts/prefer-namespace-keyword": State.
|
|
113
|
+
readonly "ts/prefer-as-const": State.WARN;
|
|
114
|
+
readonly "ts/prefer-find": State.WARN;
|
|
115
|
+
readonly "ts/prefer-for-of": State.WARN;
|
|
116
|
+
readonly "ts/prefer-function-type": State.WARN;
|
|
117
|
+
readonly "ts/prefer-includes": State.WARN;
|
|
118
|
+
readonly "ts/prefer-namespace-keyword": State.WARN;
|
|
119
119
|
readonly "ts/prefer-nullish-coalescing": readonly [
|
|
120
|
-
State.
|
|
120
|
+
State.WARN,
|
|
121
121
|
{
|
|
122
122
|
readonly ignoreMixedLogicalExpressions: true;
|
|
123
123
|
readonly ignorePrimitives: true;
|
|
124
124
|
}
|
|
125
125
|
];
|
|
126
126
|
readonly "ts/prefer-optional-chain": readonly [
|
|
127
|
-
State.
|
|
127
|
+
State.WARN,
|
|
128
128
|
{
|
|
129
129
|
readonly checkBigInt: false;
|
|
130
130
|
readonly checkBoolean: false;
|
|
@@ -132,14 +132,13 @@ declare const _default: {
|
|
|
132
132
|
readonly checkString: false;
|
|
133
133
|
}
|
|
134
134
|
];
|
|
135
|
-
readonly "ts/prefer-readonly": State.
|
|
136
|
-
readonly "ts/prefer-reduce-type-parameter": State.
|
|
137
|
-
readonly "ts/prefer-regexp-exec": State.
|
|
138
|
-
readonly "ts/prefer-return-this-type": State.
|
|
139
|
-
readonly "ts/prefer-string-starts-ends-with": State.
|
|
135
|
+
readonly "ts/prefer-readonly": State.WARN;
|
|
136
|
+
readonly "ts/prefer-reduce-type-parameter": State.WARN;
|
|
137
|
+
readonly "ts/prefer-regexp-exec": State.WARN;
|
|
138
|
+
readonly "ts/prefer-return-this-type": State.WARN;
|
|
139
|
+
readonly "ts/prefer-string-starts-ends-with": State.WARN;
|
|
140
140
|
readonly "ts/promise-function-async": State.ON;
|
|
141
|
-
readonly "ts/
|
|
142
|
-
readonly "ts/require-array-sort-compare": State.ON;
|
|
141
|
+
readonly "ts/require-array-sort-compare": State.WARN;
|
|
143
142
|
readonly "ts/restrict-plus-operands": readonly [
|
|
144
143
|
State.ON,
|
|
145
144
|
{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ts.d.ts","sourceRoot":"","sources":["../../../src/rules/ts/ts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC
|
|
1
|
+
{"version":3,"file":"ts.d.ts","sourceRoot":"","sources":["../../../src/rules/ts/ts.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGjC,wBA6ME"}
|
package/dist/rules/ts/ts.js
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
rules: {
|
|
3
3
|
"ts/await-thenable": 2,
|
|
4
|
-
"ts/ban-ts-comment":
|
|
5
|
-
"ts/ban-tslint-comment":
|
|
6
|
-
"ts/class-literal-property-style":
|
|
7
|
-
"ts/consistent-generic-constructors":
|
|
4
|
+
"ts/ban-ts-comment": 1,
|
|
5
|
+
"ts/ban-tslint-comment": 1,
|
|
6
|
+
"ts/class-literal-property-style": 1,
|
|
7
|
+
"ts/consistent-generic-constructors": 1,
|
|
8
8
|
"ts/consistent-type-assertions": [
|
|
9
|
-
|
|
9
|
+
1,
|
|
10
10
|
{
|
|
11
11
|
arrayLiteralTypeAssertions: "never",
|
|
12
12
|
objectLiteralTypeAssertions: "never",
|
|
13
13
|
},
|
|
14
14
|
],
|
|
15
|
-
"ts/consistent-type-exports":
|
|
16
|
-
"ts/consistent-type-imports":
|
|
15
|
+
"ts/consistent-type-exports": 1,
|
|
16
|
+
"ts/consistent-type-imports": 1,
|
|
17
17
|
"ts/explicit-member-accessibility": [
|
|
18
|
-
|
|
18
|
+
1,
|
|
19
19
|
{
|
|
20
20
|
overrides: {
|
|
21
21
|
constructors: "no-public",
|
|
@@ -23,14 +23,14 @@ export default {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
"ts/member-ordering": [
|
|
26
|
-
|
|
26
|
+
1,
|
|
27
27
|
{
|
|
28
28
|
"default": {
|
|
29
29
|
optionalityOrder: "required-first",
|
|
30
30
|
},
|
|
31
31
|
},
|
|
32
32
|
],
|
|
33
|
-
"ts/method-signature-style":
|
|
33
|
+
"ts/method-signature-style": 1,
|
|
34
34
|
"ts/no-array-delete": 2,
|
|
35
35
|
"ts/no-base-to-string": 2,
|
|
36
36
|
"ts/no-confusing-non-null-assertion": 2,
|
|
@@ -100,30 +100,30 @@ export default {
|
|
|
100
100
|
],
|
|
101
101
|
"ts/no-unsafe-return": 2,
|
|
102
102
|
"ts/no-unsafe-unary-minus": 2,
|
|
103
|
-
"ts/no-unused-private-class-members":
|
|
104
|
-
"ts/no-useless-empty-export":
|
|
103
|
+
"ts/no-unused-private-class-members": 1,
|
|
104
|
+
"ts/no-useless-empty-export": 1,
|
|
105
105
|
"ts/no-wrapper-object-types": 2,
|
|
106
106
|
"ts/parameter-properties": [
|
|
107
|
-
|
|
107
|
+
1,
|
|
108
108
|
{
|
|
109
109
|
prefer: "parameter-property",
|
|
110
110
|
},
|
|
111
111
|
],
|
|
112
|
-
"ts/prefer-as-const":
|
|
113
|
-
"ts/prefer-find":
|
|
114
|
-
"ts/prefer-for-of":
|
|
115
|
-
"ts/prefer-function-type":
|
|
116
|
-
"ts/prefer-includes":
|
|
117
|
-
"ts/prefer-namespace-keyword":
|
|
112
|
+
"ts/prefer-as-const": 1,
|
|
113
|
+
"ts/prefer-find": 1,
|
|
114
|
+
"ts/prefer-for-of": 1,
|
|
115
|
+
"ts/prefer-function-type": 1,
|
|
116
|
+
"ts/prefer-includes": 1,
|
|
117
|
+
"ts/prefer-namespace-keyword": 1,
|
|
118
118
|
"ts/prefer-nullish-coalescing": [
|
|
119
|
-
|
|
119
|
+
1,
|
|
120
120
|
{
|
|
121
121
|
ignoreMixedLogicalExpressions: true,
|
|
122
122
|
ignorePrimitives: true,
|
|
123
123
|
},
|
|
124
124
|
],
|
|
125
125
|
"ts/prefer-optional-chain": [
|
|
126
|
-
|
|
126
|
+
1,
|
|
127
127
|
{
|
|
128
128
|
checkBigInt: false,
|
|
129
129
|
checkBoolean: false,
|
|
@@ -131,14 +131,13 @@ export default {
|
|
|
131
131
|
checkString: false,
|
|
132
132
|
},
|
|
133
133
|
],
|
|
134
|
-
"ts/prefer-readonly":
|
|
135
|
-
"ts/prefer-reduce-type-parameter":
|
|
136
|
-
"ts/prefer-regexp-exec":
|
|
137
|
-
"ts/prefer-return-this-type":
|
|
138
|
-
"ts/prefer-string-starts-ends-with":
|
|
134
|
+
"ts/prefer-readonly": 1,
|
|
135
|
+
"ts/prefer-reduce-type-parameter": 1,
|
|
136
|
+
"ts/prefer-regexp-exec": 1,
|
|
137
|
+
"ts/prefer-return-this-type": 1,
|
|
138
|
+
"ts/prefer-string-starts-ends-with": 1,
|
|
139
139
|
"ts/promise-function-async": 2,
|
|
140
|
-
"ts/
|
|
141
|
-
"ts/require-array-sort-compare": 2,
|
|
140
|
+
"ts/require-array-sort-compare": 1,
|
|
142
141
|
"ts/restrict-plus-operands": [
|
|
143
142
|
2,
|
|
144
143
|
{
|
package/dist/rules/ts/ts.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ts.js","sourceRoot":"","sources":["../../../src/rules/ts/ts.ts"],"names":[],"mappings":"AAGA,eAAe;IACb,KAAK,EAAE;QAGL,mBAAmB,GAAU;QAC7B,mBAAmB,
|
|
1
|
+
{"version":3,"file":"ts.js","sourceRoot":"","sources":["../../../src/rules/ts/ts.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,7 @@ import { State } from "../state.js";
|
|
|
2
2
|
declare const _default: {
|
|
3
3
|
rules: {
|
|
4
4
|
readonly "yml/flow-mapping-curly-newline": readonly [
|
|
5
|
-
State.
|
|
5
|
+
State.WARN,
|
|
6
6
|
{
|
|
7
7
|
readonly consistent: true;
|
|
8
8
|
readonly multiline: true;
|
|
@@ -10,18 +10,18 @@ declare const _default: {
|
|
|
10
10
|
}
|
|
11
11
|
];
|
|
12
12
|
readonly "yml/flow-mapping-curly-spacing": readonly [
|
|
13
|
-
State.
|
|
13
|
+
State.WARN,
|
|
14
14
|
"never",
|
|
15
15
|
{
|
|
16
16
|
readonly objectsInObjects: true;
|
|
17
17
|
}
|
|
18
18
|
];
|
|
19
|
-
readonly "yml/flow-sequence-bracket-newline": State.
|
|
20
|
-
readonly "yml/flow-sequence-bracket-spacing": State.
|
|
21
|
-
readonly "yml/key-spacing": State.
|
|
19
|
+
readonly "yml/flow-sequence-bracket-newline": State.WARN;
|
|
20
|
+
readonly "yml/flow-sequence-bracket-spacing": State.WARN;
|
|
21
|
+
readonly "yml/key-spacing": State.WARN;
|
|
22
22
|
readonly "yml/no-irregular-whitespace": State.ON;
|
|
23
23
|
readonly "yml/no-multiple-empty-lines": readonly [
|
|
24
|
-
State.
|
|
24
|
+
State.WARN,
|
|
25
25
|
{
|
|
26
26
|
readonly max: 1;
|
|
27
27
|
readonly maxBOF: 0;
|
|
@@ -29,7 +29,7 @@ declare const _default: {
|
|
|
29
29
|
}
|
|
30
30
|
];
|
|
31
31
|
readonly "yml/spaced-comment": readonly [
|
|
32
|
-
State.
|
|
32
|
+
State.WARN,
|
|
33
33
|
"always",
|
|
34
34
|
{
|
|
35
35
|
readonly exceptions: readonly [
|
package/dist/rules/yml/extend.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
rules: {
|
|
3
3
|
"yml/flow-mapping-curly-newline": [
|
|
4
|
-
|
|
4
|
+
1,
|
|
5
5
|
{
|
|
6
6
|
consistent: true,
|
|
7
7
|
multiline: true,
|
|
@@ -9,18 +9,18 @@ export default {
|
|
|
9
9
|
},
|
|
10
10
|
],
|
|
11
11
|
"yml/flow-mapping-curly-spacing": [
|
|
12
|
-
|
|
12
|
+
1,
|
|
13
13
|
"never",
|
|
14
14
|
{
|
|
15
15
|
objectsInObjects: true,
|
|
16
16
|
},
|
|
17
17
|
],
|
|
18
|
-
"yml/flow-sequence-bracket-newline":
|
|
19
|
-
"yml/flow-sequence-bracket-spacing":
|
|
20
|
-
"yml/key-spacing":
|
|
18
|
+
"yml/flow-sequence-bracket-newline": 1,
|
|
19
|
+
"yml/flow-sequence-bracket-spacing": 1,
|
|
20
|
+
"yml/key-spacing": 1,
|
|
21
21
|
"yml/no-irregular-whitespace": 2,
|
|
22
22
|
"yml/no-multiple-empty-lines": [
|
|
23
|
-
|
|
23
|
+
1,
|
|
24
24
|
{
|
|
25
25
|
max: 1,
|
|
26
26
|
maxBOF: 0,
|
|
@@ -28,7 +28,7 @@ export default {
|
|
|
28
28
|
},
|
|
29
29
|
],
|
|
30
30
|
"yml/spaced-comment": [
|
|
31
|
-
|
|
31
|
+
1,
|
|
32
32
|
"always",
|
|
33
33
|
{
|
|
34
34
|
exceptions: ["#"],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extend.js","sourceRoot":"","sources":["../../../src/rules/yml/extend.ts"],"names":[],"mappings":"AAGA,eAAe;IACb,KAAK,EAAE;QACL,gCAAgC,EAAE;;YAEhC;gBACE,UAAU,EAAE,IAAI;gBAChB,SAAS,EAAE,IAAI;gBACf,aAAa,EAAE,CAAC;aACjB;SACF;QACD,gCAAgC,EAAE;;YAEhC,OAAO;YACP;gBACE,gBAAgB,EAAE,IAAI;aACvB;SACF;QACD,mCAAmC,
|
|
1
|
+
{"version":3,"file":"extend.js","sourceRoot":"","sources":["../../../src/rules/yml/extend.ts"],"names":[],"mappings":"AAGA,eAAe;IACb,KAAK,EAAE;QACL,gCAAgC,EAAE;;YAEhC;gBACE,UAAU,EAAE,IAAI;gBAChB,SAAS,EAAE,IAAI;gBACf,aAAa,EAAE,CAAC;aACjB;SACF;QACD,gCAAgC,EAAE;;YAEhC,OAAO;YACP;gBACE,gBAAgB,EAAE,IAAI;aACvB;SACF;QACD,mCAAmC,GAAY;QAC/C,mCAAmC,GAAY;QAC/C,iBAAiB,GAAY;QAC7B,6BAA6B,GAAU;QACvC,6BAA6B,EAAE;;YAE7B;gBACE,GAAG,EAAE,CAAC;gBACN,MAAM,EAAE,CAAC;gBACT,MAAM,EAAE,CAAC;aACV;SACF;QACD,oBAAoB,EAAE;;YAEpB,QAAQ;YACR;gBACE,UAAU,EAAE,CAAC,GAAG,CAAC;gBACjB,OAAO,EAAE;oBACP,GAAG;oBACH,GAAG;oBACH,IAAI;oBACJ,KAAK;oBACL,MAAM;oBACN,OAAO;oBACP,QAAQ;oBACR,WAAW;iBACZ;aACF;SACF;KACO;CACX,CAAC"}
|
|
@@ -1,21 +1,22 @@
|
|
|
1
1
|
declare const _default: ({
|
|
2
2
|
rules: {
|
|
3
|
-
readonly "yml/block-mapping-colon-indicator-newline": import("../state.js").State.
|
|
4
|
-
readonly "yml/block-mapping-question-indicator-newline": import("../state.js").State.
|
|
5
|
-
readonly "yml/block-mapping": import("../state.js").State.
|
|
6
|
-
readonly "yml/block-sequence-hyphen-indicator-newline": import("../state.js").State.
|
|
7
|
-
readonly "yml/block-sequence": import("../state.js").State.
|
|
8
|
-
readonly "yml/indent": import("../state.js").State.
|
|
9
|
-
readonly "yml/no-empty-key": import("../state.js").State.
|
|
10
|
-
readonly "yml/no-empty-sequence-entry": import("../state.js").State.
|
|
11
|
-
readonly "yml/no-tab-indent": import("../state.js").State.
|
|
12
|
-
readonly "yml/no-trailing-zeros": import("../state.js").State.
|
|
13
|
-
readonly "yml/
|
|
3
|
+
readonly "yml/block-mapping-colon-indicator-newline": import("../state.js").State.WARN;
|
|
4
|
+
readonly "yml/block-mapping-question-indicator-newline": import("../state.js").State.WARN;
|
|
5
|
+
readonly "yml/block-mapping": import("../state.js").State.WARN;
|
|
6
|
+
readonly "yml/block-sequence-hyphen-indicator-newline": import("../state.js").State.WARN;
|
|
7
|
+
readonly "yml/block-sequence": import("../state.js").State.WARN;
|
|
8
|
+
readonly "yml/indent": import("../state.js").State.WARN;
|
|
9
|
+
readonly "yml/no-empty-key": import("../state.js").State.WARN;
|
|
10
|
+
readonly "yml/no-empty-sequence-entry": import("../state.js").State.WARN;
|
|
11
|
+
readonly "yml/no-tab-indent": import("../state.js").State.WARN;
|
|
12
|
+
readonly "yml/no-trailing-zeros": import("../state.js").State.WARN;
|
|
13
|
+
readonly "yml/quotes": import("../state.js").State.WARN;
|
|
14
|
+
readonly "yml/require-string-key": import("../state.js").State.WARN;
|
|
14
15
|
};
|
|
15
16
|
} | {
|
|
16
17
|
rules: {
|
|
17
18
|
readonly "yml/flow-mapping-curly-newline": readonly [
|
|
18
|
-
import("../state.js").State.
|
|
19
|
+
import("../state.js").State.WARN,
|
|
19
20
|
{
|
|
20
21
|
readonly consistent: true;
|
|
21
22
|
readonly multiline: true;
|
|
@@ -23,18 +24,18 @@ declare const _default: ({
|
|
|
23
24
|
}
|
|
24
25
|
];
|
|
25
26
|
readonly "yml/flow-mapping-curly-spacing": readonly [
|
|
26
|
-
import("../state.js").State.
|
|
27
|
+
import("../state.js").State.WARN,
|
|
27
28
|
"never",
|
|
28
29
|
{
|
|
29
30
|
readonly objectsInObjects: true;
|
|
30
31
|
}
|
|
31
32
|
];
|
|
32
|
-
readonly "yml/flow-sequence-bracket-newline": import("../state.js").State.
|
|
33
|
-
readonly "yml/flow-sequence-bracket-spacing": import("../state.js").State.
|
|
34
|
-
readonly "yml/key-spacing": import("../state.js").State.
|
|
33
|
+
readonly "yml/flow-sequence-bracket-newline": import("../state.js").State.WARN;
|
|
34
|
+
readonly "yml/flow-sequence-bracket-spacing": import("../state.js").State.WARN;
|
|
35
|
+
readonly "yml/key-spacing": import("../state.js").State.WARN;
|
|
35
36
|
readonly "yml/no-irregular-whitespace": import("../state.js").State.ON;
|
|
36
37
|
readonly "yml/no-multiple-empty-lines": readonly [
|
|
37
|
-
import("../state.js").State.
|
|
38
|
+
import("../state.js").State.WARN,
|
|
38
39
|
{
|
|
39
40
|
readonly max: 1;
|
|
40
41
|
readonly maxBOF: 0;
|
|
@@ -42,7 +43,7 @@ declare const _default: ({
|
|
|
42
43
|
}
|
|
43
44
|
];
|
|
44
45
|
readonly "yml/spaced-comment": readonly [
|
|
45
|
-
import("../state.js").State.
|
|
46
|
+
import("../state.js").State.WARN,
|
|
46
47
|
"always",
|
|
47
48
|
{
|
|
48
49
|
readonly exceptions: readonly [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/rules/yml/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/rules/yml/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAGA,wBAGE"}
|
package/dist/rules/yml/yml.d.ts
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
import { State } from "../state.js";
|
|
2
2
|
declare const _default: {
|
|
3
3
|
rules: {
|
|
4
|
-
readonly "yml/block-mapping-colon-indicator-newline": State.
|
|
5
|
-
readonly "yml/block-mapping-question-indicator-newline": State.
|
|
6
|
-
readonly "yml/block-mapping": State.
|
|
7
|
-
readonly "yml/block-sequence-hyphen-indicator-newline": State.
|
|
8
|
-
readonly "yml/block-sequence": State.
|
|
9
|
-
readonly "yml/indent": State.
|
|
10
|
-
readonly "yml/no-empty-key": State.
|
|
11
|
-
readonly "yml/no-empty-sequence-entry": State.
|
|
12
|
-
readonly "yml/no-tab-indent": State.
|
|
13
|
-
readonly "yml/no-trailing-zeros": State.
|
|
14
|
-
readonly "yml/
|
|
4
|
+
readonly "yml/block-mapping-colon-indicator-newline": State.WARN;
|
|
5
|
+
readonly "yml/block-mapping-question-indicator-newline": State.WARN;
|
|
6
|
+
readonly "yml/block-mapping": State.WARN;
|
|
7
|
+
readonly "yml/block-sequence-hyphen-indicator-newline": State.WARN;
|
|
8
|
+
readonly "yml/block-sequence": State.WARN;
|
|
9
|
+
readonly "yml/indent": State.WARN;
|
|
10
|
+
readonly "yml/no-empty-key": State.WARN;
|
|
11
|
+
readonly "yml/no-empty-sequence-entry": State.WARN;
|
|
12
|
+
readonly "yml/no-tab-indent": State.WARN;
|
|
13
|
+
readonly "yml/no-trailing-zeros": State.WARN;
|
|
14
|
+
readonly "yml/quotes": State.WARN;
|
|
15
|
+
readonly "yml/require-string-key": State.WARN;
|
|
15
16
|
};
|
|
16
17
|
};
|
|
17
18
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"yml.d.ts","sourceRoot":"","sources":["../../../src/rules/yml/yml.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC
|
|
1
|
+
{"version":3,"file":"yml.d.ts","sourceRoot":"","sources":["../../../src/rules/yml/yml.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;;;;;;;;;;;;;;;;;AAGjC,wBAuBE"}
|
package/dist/rules/yml/yml.js
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
rules: {
|
|
3
|
-
"yml/block-mapping-colon-indicator-newline":
|
|
4
|
-
"yml/block-mapping-question-indicator-newline":
|
|
5
|
-
"yml/block-mapping":
|
|
6
|
-
"yml/block-sequence-hyphen-indicator-newline":
|
|
7
|
-
"yml/block-sequence":
|
|
8
|
-
"yml/indent":
|
|
9
|
-
"yml/no-empty-key":
|
|
10
|
-
"yml/no-empty-sequence-entry":
|
|
11
|
-
"yml/no-tab-indent":
|
|
12
|
-
"yml/no-trailing-zeros":
|
|
13
|
-
"yml/
|
|
3
|
+
"yml/block-mapping-colon-indicator-newline": 1,
|
|
4
|
+
"yml/block-mapping-question-indicator-newline": 1,
|
|
5
|
+
"yml/block-mapping": 1,
|
|
6
|
+
"yml/block-sequence-hyphen-indicator-newline": 1,
|
|
7
|
+
"yml/block-sequence": 1,
|
|
8
|
+
"yml/indent": 1,
|
|
9
|
+
"yml/no-empty-key": 1,
|
|
10
|
+
"yml/no-empty-sequence-entry": 1,
|
|
11
|
+
"yml/no-tab-indent": 1,
|
|
12
|
+
"yml/no-trailing-zeros": 1,
|
|
13
|
+
"yml/quotes": 1,
|
|
14
|
+
"yml/require-string-key": 1,
|
|
14
15
|
},
|
|
15
16
|
};
|
|
16
17
|
//# sourceMappingURL=yml.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"yml.js","sourceRoot":"","sources":["../../../src/rules/yml/yml.ts"],"names":[],"mappings":"AAGA,eAAe;IACb,KAAK,EAAE;QACL,2CAA2C,
|
|
1
|
+
{"version":3,"file":"yml.js","sourceRoot":"","sources":["../../../src/rules/yml/yml.ts"],"names":[],"mappings":"AAGA,eAAe;IACb,KAAK,EAAE;QACL,2CAA2C,GAAY;QACvD,8CAA8C,GAAY;QAC1D,mBAAmB,GAAY;QAC/B,6CAA6C,GAAY;QACzD,oBAAoB,GAAY;QAEhC,YAAY,GAAY;QAGxB,kBAAkB,GAAY;QAE9B,6BAA6B,GAAY;QACzC,mBAAmB,GAAY;QAC/B,uBAAuB,GAAY;QAEnC,YAAY,GAAY;QACxB,wBAAwB,GAAY;KAI5B;CACX,CAAC"}
|