linted 19.4.3-rc.5 → 19.4.3-rc.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. package/.github/workflows/RELEASE.yml +36 -38
  2. package/.github/workflows/rc.yml +36 -37
  3. package/.markdownlint.jsonc +122 -122
  4. package/LICENSE +21 -21
  5. package/README.md +387 -387
  6. package/SECURITY.md +9 -9
  7. package/dist/imports/index.d.ts.map +1 -1
  8. package/dist/imports/plugins.d.ts.map +1 -1
  9. package/eslint.config.js +3 -3
  10. package/package.json +144 -140
  11. package/src/_strings/id.ts +8 -8
  12. package/src/_strings/index.ts +6 -6
  13. package/src/_strings/level.spec.ts +31 -31
  14. package/src/_strings/level.ts +4 -4
  15. package/src/_strings/state.ts +28 -28
  16. package/src/files/html.ts +1 -1
  17. package/src/files/index.ts +19 -19
  18. package/src/files/js.ts +4 -4
  19. package/src/files/json.ts +1 -1
  20. package/src/files/jsonc.ts +4 -4
  21. package/src/files/mocha.ts +4 -4
  22. package/src/files/mochaJs.ts +4 -4
  23. package/src/files/svelte.ts +1 -1
  24. package/src/files/ts.ts +1 -1
  25. package/src/files/yml.ts +1 -1
  26. package/src/imports/index.ts +7 -7
  27. package/src/imports/parsers.ts +13 -13
  28. package/src/imports/plugins.ts +17 -17
  29. package/src/index.spec.ts +11 -11
  30. package/src/index.ts +22 -22
  31. package/src/rules/html/enable.ts +120 -120
  32. package/src/rules/html/index.ts +3 -3
  33. package/src/rules/index.ts +19 -19
  34. package/src/rules/js/enable.ts +524 -524
  35. package/src/rules/js/index.ts +4 -4
  36. package/src/rules/js/stylistic.ts +611 -611
  37. package/src/rules/json/enable.ts +33 -33
  38. package/src/rules/json/enable_x.ts +95 -95
  39. package/src/rules/json/index.ts +4 -4
  40. package/src/rules/jsonc/index.ts +4 -4
  41. package/src/rules/jsonc/override.ts +16 -16
  42. package/src/rules/mocha/base.ts +7 -7
  43. package/src/rules/mocha/disable.ts +8 -8
  44. package/src/rules/mocha/enable.ts +53 -53
  45. package/src/rules/mocha/index.ts +7 -7
  46. package/src/rules/mochaJs/index.ts +7 -7
  47. package/src/rules/svelte/disable.ts +9 -9
  48. package/src/rules/svelte/disable_js.ts +11 -11
  49. package/src/rules/svelte/disable_ts.ts +9 -9
  50. package/src/rules/svelte/enable.ts +230 -230
  51. package/src/rules/svelte/enable_x.ts +20 -20
  52. package/src/rules/svelte/index.ts +15 -15
  53. package/src/rules/ts/disable.ts +22 -22
  54. package/src/rules/ts/disable_x.ts +32 -32
  55. package/src/rules/ts/enable.ts +550 -550
  56. package/src/rules/ts/enable_x.ts +115 -115
  57. package/src/rules/ts/index.ts +13 -13
  58. package/src/rules/yml/enable.ts +64 -64
  59. package/src/rules/yml/enable_x.ts +68 -68
  60. package/src/rules/yml/index.ts +4 -4
  61. package/tsconfig.json +163 -163
  62. package/typings/mocha.d.ts +3 -3
@@ -1,115 +1,115 @@
1
- import { enable_x, level, state } from "../../_strings";
2
-
3
- const
4
- { ERROR, OFF } = level,
5
- { Always, All } = state;
6
-
7
- export default [
8
- enable_x,
9
- {
10
- // https://typescript-eslint.io/rules/?=extension-xdeprecated#rules
11
- "@typescript-eslint/class-methods-use-this": OFF /* preference -- eslint:off */,
12
- "@typescript-eslint/consistent-return": OFF /* tsconfig: noImplicitReturns */,
13
- "@typescript-eslint/default-param-last": ERROR,
14
- "@typescript-eslint/dot-notation": [
15
- ERROR,
16
- {
17
- allowKeywords: true,
18
-
19
- // TS-only
20
- allowPrivateClassPropertyAccess: true,
21
- allowProtectedClassPropertyAccess: true,
22
- allowIndexSignaturePropertyAccess: true,
23
- },
24
- ],
25
- "@typescript-eslint/init-declarations": [
26
- ERROR,
27
- Always,
28
- ],
29
- "@typescript-eslint/max-params": OFF /* preference */,
30
- "@typescript-eslint/no-array-constructor": ERROR,
31
- "@typescript-eslint/no-dupe-class-members": OFF /* tsc */,
32
- "@typescript-eslint/no-empty-function": [
33
- ERROR,
34
- {
35
- allow: [
36
- "constructors",
37
- "private-constructors",
38
- "protected-constructors",
39
- "decoratedFunctions",
40
- ],
41
- }, /* functions, arrowFunctions, generatorFunctions, methods, generatorMethods, getters, setters, constructors, asyncFunctions, asyncMethods; TS-ONLY: private-constructors, protected-constructors, decoratedFunctions, overrideMethods */
42
- ],
43
- "@typescript-eslint/no-implied-eval": ERROR,
44
- "@typescript-eslint/no-invalid-this": OFF /* tsconfig: { strict, noImplicitThis } */,
45
- "@typescript-eslint/no-loop-func": ERROR,
46
- "@typescript-eslint/no-magic-numbers": OFF,
47
- "@typescript-eslint/no-redeclare": OFF /* tsc (let, const, -var) */,
48
- "@typescript-eslint/no-restricted-imports": OFF /* preference */,
49
- "@typescript-eslint/no-shadow": OFF /* investigate */,
50
- "@typescript-eslint/no-unused-expressions": [
51
- ERROR,
52
- {
53
- allowShortCircuit: true,
54
- allowTernary: true,
55
- allowTaggedTemplates: true,
56
- enforceForJSX: false,
57
- },
58
- ],
59
- "@typescript-eslint/no-unused-vars": [
60
- ERROR,
61
- {
62
- vars: All,
63
- args: All,
64
- caughtErrors: All,
65
- ignoreRestSiblings: false,
66
- ignoreClassWithStaticInitBlock: false,
67
- reportUsedIgnorePattern: true,
68
- },
69
- ],
70
- "@typescript-eslint/no-use-before-define": [
71
- ERROR,
72
- {
73
- functions: true,
74
- classes: true,
75
- variables: true,
76
- allowNamedExports: false,
77
- enums: true,
78
- typedefs: false /* changed 14.2.2 (still questionable) */,
79
- ignoreTypeReferences: true,
80
- },
81
- ],
82
- "@typescript-eslint/no-useless-constructor": ERROR,
83
- "@typescript-eslint/only-throw-error": [
84
- ERROR,
85
- {
86
- allowThrowingAny: false,
87
- allowThrowingUnknown: false,
88
- },
89
- ],
90
- "@typescript-eslint/prefer-destructuring": [
91
- ERROR,
92
- {
93
- VariableDeclarator: {
94
- array: true,
95
- object: true,
96
- },
97
- AssignmentExpression: {
98
- array: false,
99
- object: false,
100
- },
101
- },
102
- {
103
- enforceForRenamedProperties: false,
104
- enforceForDeclarationWithTypeAnnotation: false,
105
- },
106
- ],
107
- "@typescript-eslint/prefer-promise-reject-errors": [
108
- ERROR,
109
- {
110
- allowEmptyReject: false,
111
- },
112
- ],
113
- "@typescript-eslint/require-await": ERROR,
114
- },
115
- ] as const;
1
+ import { enable_x, level, state } from "../../_strings";
2
+
3
+ const
4
+ { ERROR, OFF } = level,
5
+ { Always, All } = state;
6
+
7
+ export default [
8
+ enable_x,
9
+ {
10
+ // https://typescript-eslint.io/rules/?=extension-xdeprecated#rules
11
+ "@typescript-eslint/class-methods-use-this": OFF /* preference -- eslint:off */,
12
+ "@typescript-eslint/consistent-return": OFF /* tsconfig: noImplicitReturns */,
13
+ "@typescript-eslint/default-param-last": ERROR,
14
+ "@typescript-eslint/dot-notation": [
15
+ ERROR,
16
+ {
17
+ allowKeywords: true,
18
+
19
+ // TS-only
20
+ allowPrivateClassPropertyAccess: true,
21
+ allowProtectedClassPropertyAccess: true,
22
+ allowIndexSignaturePropertyAccess: true,
23
+ },
24
+ ],
25
+ "@typescript-eslint/init-declarations": [
26
+ ERROR,
27
+ Always,
28
+ ],
29
+ "@typescript-eslint/max-params": OFF /* preference */,
30
+ "@typescript-eslint/no-array-constructor": ERROR,
31
+ "@typescript-eslint/no-dupe-class-members": OFF /* tsc */,
32
+ "@typescript-eslint/no-empty-function": [
33
+ ERROR,
34
+ {
35
+ allow: [
36
+ "constructors",
37
+ "private-constructors",
38
+ "protected-constructors",
39
+ "decoratedFunctions",
40
+ ],
41
+ }, /* functions, arrowFunctions, generatorFunctions, methods, generatorMethods, getters, setters, constructors, asyncFunctions, asyncMethods; TS-ONLY: private-constructors, protected-constructors, decoratedFunctions, overrideMethods */
42
+ ],
43
+ "@typescript-eslint/no-implied-eval": ERROR,
44
+ "@typescript-eslint/no-invalid-this": OFF /* tsconfig: { strict, noImplicitThis } */,
45
+ "@typescript-eslint/no-loop-func": ERROR,
46
+ "@typescript-eslint/no-magic-numbers": OFF,
47
+ "@typescript-eslint/no-redeclare": OFF /* tsc (let, const, -var) */,
48
+ "@typescript-eslint/no-restricted-imports": OFF /* preference */,
49
+ "@typescript-eslint/no-shadow": OFF /* investigate */,
50
+ "@typescript-eslint/no-unused-expressions": [
51
+ ERROR,
52
+ {
53
+ allowShortCircuit: true,
54
+ allowTernary: true,
55
+ allowTaggedTemplates: true,
56
+ enforceForJSX: false,
57
+ },
58
+ ],
59
+ "@typescript-eslint/no-unused-vars": [
60
+ ERROR,
61
+ {
62
+ vars: All,
63
+ args: All,
64
+ caughtErrors: All,
65
+ ignoreRestSiblings: false,
66
+ ignoreClassWithStaticInitBlock: false,
67
+ reportUsedIgnorePattern: true,
68
+ },
69
+ ],
70
+ "@typescript-eslint/no-use-before-define": [
71
+ ERROR,
72
+ {
73
+ functions: true,
74
+ classes: true,
75
+ variables: true,
76
+ allowNamedExports: false,
77
+ enums: true,
78
+ typedefs: false /* changed 14.2.2 (still questionable) */,
79
+ ignoreTypeReferences: true,
80
+ },
81
+ ],
82
+ "@typescript-eslint/no-useless-constructor": ERROR,
83
+ "@typescript-eslint/only-throw-error": [
84
+ ERROR,
85
+ {
86
+ allowThrowingAny: false,
87
+ allowThrowingUnknown: false,
88
+ },
89
+ ],
90
+ "@typescript-eslint/prefer-destructuring": [
91
+ ERROR,
92
+ {
93
+ VariableDeclarator: {
94
+ array: true,
95
+ object: true,
96
+ },
97
+ AssignmentExpression: {
98
+ array: false,
99
+ object: false,
100
+ },
101
+ },
102
+ {
103
+ enforceForRenamedProperties: false,
104
+ enforceForDeclarationWithTypeAnnotation: false,
105
+ },
106
+ ],
107
+ "@typescript-eslint/prefer-promise-reject-errors": [
108
+ ERROR,
109
+ {
110
+ allowEmptyReject: false,
111
+ },
112
+ ],
113
+ "@typescript-eslint/require-await": ERROR,
114
+ },
115
+ ] as const;
@@ -1,13 +1,13 @@
1
- import js from "../js";
2
- import disable from "./disable";
3
- import disable_x from "./disable_x";
4
- import enable_x from "./enable_x";
5
- import enable from "./enable";
6
-
7
- export default [
8
- ...js,
9
- disable,
10
- disable_x,
11
- enable_x,
12
- enable,
13
- ];
1
+ import js from "../js";
2
+ import disable from "./disable";
3
+ import disable_x from "./disable_x";
4
+ import enable_x from "./enable_x";
5
+ import enable from "./enable";
6
+
7
+ export default [
8
+ ...js,
9
+ disable,
10
+ disable_x,
11
+ enable_x,
12
+ enable,
13
+ ];
@@ -1,64 +1,64 @@
1
- import { enable, level, state } from "../../_strings";
2
-
3
- const
4
- { ERROR, OFF } = level,
5
- { Never, Always, Double } = state;
6
-
7
- export default [
8
- enable,
9
- {
10
- // https://ota-meshi.github.io/eslint-plugin-yml/rules/#yaml-rules
11
- "yml/block-mapping-colon-indicator-newline": [ERROR, Never],
12
- "yml/block-mapping-question-indicator-newline": [ERROR, Never],
13
- "yml/block-mapping": [
14
- ERROR,
15
- {
16
- singleline: Never,
17
- multiline: Always,
18
- },
19
- ],
20
- "yml/block-sequence-hyphen-indicator-newline": [
21
- ERROR,
22
- Never,
23
- {
24
- nestedHyphen: Always,
25
- blockMapping: Never,
26
- },
27
- ],
28
- "yml/block-sequence": [
29
- ERROR,
30
- {
31
- singleline: Always,
32
- multiline: Always,
33
- },
34
- ],
35
- "yml/file-extension": OFF,
36
- "yml/indent": [
37
- ERROR,
38
- 2,
39
- {
40
- indentBlockSequences: true,
41
- indicatorValueIndent: 2,
42
- },
43
- ],
44
- "yml/key-name-casing": OFF,
45
- "yml/no-empty-document": ERROR,
46
- "yml/no-empty-key": ERROR,
47
- "yml/no-empty-mapping-value": ERROR,
48
- "yml/no-empty-sequence-entry": ERROR,
49
- "yml/no-tab-indent": ERROR,
50
- "yml/no-trailing-zeros": ERROR,
51
- "yml/plain-scalar": [ERROR, Always],
52
- "yml/quotes": [
53
- ERROR,
54
- {
55
- prefer: Double,
56
- avoidEscape: true,
57
- },
58
- ],
59
- "yml/require-string-key": ERROR,
60
- "yml/sort-keys": OFF,
61
- "yml/sort-sequence-values": OFF,
62
- "yml/vue-custom-block/no-parsing-error": ERROR,
63
- },
64
- ] as const;
1
+ import { enable, level, state } from "../../_strings";
2
+
3
+ const
4
+ { ERROR, OFF } = level,
5
+ { Never, Always, Double } = state;
6
+
7
+ export default [
8
+ enable,
9
+ {
10
+ // https://ota-meshi.github.io/eslint-plugin-yml/rules/#yaml-rules
11
+ "yml/block-mapping-colon-indicator-newline": [ERROR, Never],
12
+ "yml/block-mapping-question-indicator-newline": [ERROR, Never],
13
+ "yml/block-mapping": [
14
+ ERROR,
15
+ {
16
+ singleline: Never,
17
+ multiline: Always,
18
+ },
19
+ ],
20
+ "yml/block-sequence-hyphen-indicator-newline": [
21
+ ERROR,
22
+ Never,
23
+ {
24
+ nestedHyphen: Always,
25
+ blockMapping: Never,
26
+ },
27
+ ],
28
+ "yml/block-sequence": [
29
+ ERROR,
30
+ {
31
+ singleline: Always,
32
+ multiline: Always,
33
+ },
34
+ ],
35
+ "yml/file-extension": OFF,
36
+ "yml/indent": [
37
+ ERROR,
38
+ 2,
39
+ {
40
+ indentBlockSequences: true,
41
+ indicatorValueIndent: 2,
42
+ },
43
+ ],
44
+ "yml/key-name-casing": OFF,
45
+ "yml/no-empty-document": ERROR,
46
+ "yml/no-empty-key": ERROR,
47
+ "yml/no-empty-mapping-value": ERROR,
48
+ "yml/no-empty-sequence-entry": ERROR,
49
+ "yml/no-tab-indent": ERROR,
50
+ "yml/no-trailing-zeros": ERROR,
51
+ "yml/plain-scalar": [ERROR, Always],
52
+ "yml/quotes": [
53
+ ERROR,
54
+ {
55
+ prefer: Double,
56
+ avoidEscape: true,
57
+ },
58
+ ],
59
+ "yml/require-string-key": ERROR,
60
+ "yml/sort-keys": OFF,
61
+ "yml/sort-sequence-values": OFF,
62
+ "yml/vue-custom-block/no-parsing-error": ERROR,
63
+ },
64
+ ] as const;
@@ -1,68 +1,68 @@
1
- import { enable_x, level, state } from "../../_strings";
2
-
3
- const
4
- { ERROR } = level,
5
- { Never, Always, Strict } = state;
6
-
7
- export default [
8
- enable_x,
9
- {
10
- // https://ota-meshi.github.io/eslint-plugin-yml/rules/#extension-rules
11
- "yml/flow-mapping-curly-newline": [
12
- ERROR,
13
- {
14
- consistent: false,
15
- multiline: true,
16
- minProperties: 2,
17
- },
18
- ],
19
- "yml/flow-mapping-curly-spacing": [
20
- ERROR,
21
- Always,
22
- {
23
- arraysInObjects: true,
24
- objectsInObjects: true,
25
- },
26
- ],
27
- "yml/flow-sequence-bracket-newline": [
28
- ERROR,
29
- {
30
- multiline: true,
31
- minItems: null,
32
- },
33
- ],
34
- "yml/flow-sequence-bracket-spacing": [
35
- ERROR,
36
- Never,
37
- {
38
- singleValue: false,
39
- objectsInArrays: false,
40
- arraysInArrays: false,
41
- },
42
- ],
43
- "yml/key-spacing": [
44
- ERROR,
45
- {
46
- beforeColon: false,
47
- afterColon: true,
48
- mode: Strict,
49
- },
50
- ],
51
- "yml/no-irregular-whitespace": [
52
- ERROR,
53
- {
54
- skipQuotedScalars: true,
55
- skipComments: false,
56
- },
57
- ],
58
- "yml/no-multiple-empty-lines": [
59
- ERROR,
60
- {
61
- max: 1,
62
- maxEOF: 1,
63
- maxBOF: 0,
64
- },
65
- ],
66
- "yml/spaced-comment": [ERROR, Always],
67
- },
68
- ] as const;
1
+ import { enable_x, level, state } from "../../_strings";
2
+
3
+ const
4
+ { ERROR } = level,
5
+ { Never, Always, Strict } = state;
6
+
7
+ export default [
8
+ enable_x,
9
+ {
10
+ // https://ota-meshi.github.io/eslint-plugin-yml/rules/#extension-rules
11
+ "yml/flow-mapping-curly-newline": [
12
+ ERROR,
13
+ {
14
+ consistent: false,
15
+ multiline: true,
16
+ minProperties: 2,
17
+ },
18
+ ],
19
+ "yml/flow-mapping-curly-spacing": [
20
+ ERROR,
21
+ Always,
22
+ {
23
+ arraysInObjects: true,
24
+ objectsInObjects: true,
25
+ },
26
+ ],
27
+ "yml/flow-sequence-bracket-newline": [
28
+ ERROR,
29
+ {
30
+ multiline: true,
31
+ minItems: null,
32
+ },
33
+ ],
34
+ "yml/flow-sequence-bracket-spacing": [
35
+ ERROR,
36
+ Never,
37
+ {
38
+ singleValue: false,
39
+ objectsInArrays: false,
40
+ arraysInArrays: false,
41
+ },
42
+ ],
43
+ "yml/key-spacing": [
44
+ ERROR,
45
+ {
46
+ beforeColon: false,
47
+ afterColon: true,
48
+ mode: Strict,
49
+ },
50
+ ],
51
+ "yml/no-irregular-whitespace": [
52
+ ERROR,
53
+ {
54
+ skipQuotedScalars: true,
55
+ skipComments: false,
56
+ },
57
+ ],
58
+ "yml/no-multiple-empty-lines": [
59
+ ERROR,
60
+ {
61
+ max: 1,
62
+ maxEOF: 1,
63
+ maxBOF: 0,
64
+ },
65
+ ],
66
+ "yml/spaced-comment": [ERROR, Always],
67
+ },
68
+ ] as const;
@@ -1,4 +1,4 @@
1
- import enable_x from "./enable_x";
2
- import enable from "./enable";
3
-
4
- export default [enable_x, enable];
1
+ import enable_x from "./enable_x";
2
+ import enable from "./enable";
3
+
4
+ export default [enable_x, enable];