@@ -19,40 +19,75 @@ module.exports = {
19
19
"@mysticatea/ts/adjacent-overload-signatures" : "error" ,
20
20
"@mysticatea/ts/array-type" : "error" ,
21
21
"@mysticatea/ts/await-thenable" : "error" ,
22
- "@mysticatea/ts/ban-ts-ignore" : "error" ,
23
- "@mysticatea/ts/class-name-casing" : "error" ,
22
+ "@mysticatea/ts/ban-ts-comment" : "error" ,
23
+ "@mysticatea/ts/class-literal-property-style" : "error" ,
24
+ "@mysticatea/ts/comma-spacing" : "error" ,
24
25
"@mysticatea/ts/consistent-type-assertions" : "error" ,
26
+ "@mysticatea/ts/default-param-last" : "error" ,
27
+ "@mysticatea/ts/dot-notation" : "error" ,
25
28
"@mysticatea/ts/explicit-member-accessibility" : "error" ,
26
- "@mysticatea/ts/interface-name-prefix" : "error" ,
27
- "@mysticatea/ts/member-naming" : "error" ,
29
+ "@mysticatea/ts/explicit-module-boundary-types" : "error" ,
30
+ "@mysticatea/ts/init-declarations" : "error" ,
31
+ "@mysticatea/ts/keyword-spacing" : "error" ,
32
+ "@mysticatea/ts/lines-between-class-members" : "error" ,
33
+ "@mysticatea/ts/method-signature-style" : "error" ,
34
+ "@mysticatea/ts/naming-convention" : "error" ,
28
35
"@mysticatea/ts/no-array-constructor" : "error" ,
36
+ "@mysticatea/ts/no-base-to-string" : "error" ,
37
+ "@mysticatea/ts/no-dupe-class-members" : "error" ,
38
+ "@mysticatea/ts/no-dynamic-delete" : "error" ,
29
39
"@mysticatea/ts/no-empty-interface" : "error" ,
40
+ "@mysticatea/ts/no-extra-non-null-assertion" : "error" ,
41
+ "@mysticatea/ts/no-extra-semi" : "error" ,
30
42
"@mysticatea/ts/no-extraneous-class" : "error" ,
31
43
"@mysticatea/ts/no-floating-promises" : "error" ,
32
44
"@mysticatea/ts/no-for-in-array" : "error" ,
45
+ "@mysticatea/ts/no-implied-eval" : "error" ,
33
46
"@mysticatea/ts/no-inferrable-types" : "error" ,
47
+ "@mysticatea/ts/no-invalid-this" : "error" ,
48
+ "@mysticatea/ts/no-invalid-void-type" : "error" ,
34
49
"@mysticatea/ts/no-misused-new" : "error" ,
35
50
"@mysticatea/ts/no-misused-promises" : "error" ,
51
+ "@mysticatea/ts/no-non-null-asserted-optional-chain" : "error" ,
36
52
"@mysticatea/ts/no-parameter-properties" : "error" ,
37
53
"@mysticatea/ts/no-require-imports" : "error" ,
38
54
"@mysticatea/ts/no-this-alias" : [
39
55
"error" ,
40
56
{ allowDestructuring : true } ,
41
57
] ,
58
+ "@mysticatea/ts/no-throw-literal" : "error" ,
59
+ "@mysticatea/ts/no-unnecessary-boolean-literal-compare" :
60
+ "error" ,
42
61
"@mysticatea/ts/no-unnecessary-qualifier" : "error" ,
43
62
"@mysticatea/ts/no-unnecessary-type-arguments" : "error" ,
44
63
"@mysticatea/ts/no-unnecessary-type-assertion" : "error" ,
64
+ "@mysticatea/ts/no-unsafe-assignment" : "error" ,
65
+ "@mysticatea/ts/no-unsafe-call" : "error" ,
66
+ "@mysticatea/ts/no-unsafe-member-access" : "error" ,
67
+ "@mysticatea/ts/no-unsafe-return" : "error" ,
68
+ "@mysticatea/ts/no-unused-expressions" : "error" ,
69
+ "@mysticatea/ts/no-unused-vars-experimental" : "error" ,
45
70
"@mysticatea/ts/no-var-requires" : "error" ,
71
+ "@mysticatea/ts/prefer-as-const" : "error" ,
46
72
// https://github.com/typescript-eslint/typescript-eslint/issues/454
47
73
"@mysticatea/ts/prefer-function-type" : "off" ,
48
74
"@mysticatea/ts/prefer-includes" : "error" ,
49
75
"@mysticatea/ts/prefer-namespace-keyword" : "error" ,
76
+ "@mysticatea/ts/prefer-nullish-coalescing" : "error" ,
77
+ "@mysticatea/ts/prefer-optional-chain" : "error" ,
78
+ "@mysticatea/ts/prefer-readonly-parameter-types" : "error" ,
50
79
// https://github.com/typescript-eslint/typescript-eslint/issues/946
51
80
"@mysticatea/ts/prefer-readonly" : "off" ,
81
+ "@mysticatea/ts/prefer-reduce-type-parameter" : "off" ,
52
82
"@mysticatea/ts/prefer-regexp-exec" : "error" ,
53
83
"@mysticatea/ts/prefer-string-starts-ends-with" : "error" ,
84
+ "@mysticatea/ts/prefer-ts-expect-error" : "off" ,
54
85
"@mysticatea/ts/restrict-plus-operands" : "error" ,
55
86
"@mysticatea/ts/require-array-sort-compare" : "error" ,
87
+ "@mysticatea/ts/restrict-template-expressions" : "error" ,
88
+ "@mysticatea/ts/return-await" : "error" ,
89
+ "@mysticatea/ts/space-before-function-paren" : "error" ,
90
+ "@mysticatea/ts/switch-exhaustiveness-check" : "error" ,
56
91
"@mysticatea/ts/triple-slash-reference" : "error" ,
57
92
// なんか誤検知が多い...
58
93
"@mysticatea/ts/unbound-method" : [
@@ -75,8 +110,6 @@ module.exports = {
75
110
] ,
76
111
77
112
// Replacements
78
- camelcase : "off" ,
79
- "@mysticatea/ts/camelcase" : "error" ,
80
113
"no-empty-function" : "off" ,
81
114
"@mysticatea/ts/no-empty-function" : "error" ,
82
115
"no-useless-constructor" : "off" ,
@@ -101,7 +134,6 @@ module.exports = {
101
134
"@mysticatea/ts/consistent-type-definitions" : "off" ,
102
135
"@mysticatea/ts/explicit-function-return-type" : "off" , // I want but this is not so...
103
136
"@mysticatea/ts/func-call-spacing" : "off" , // favor of Prettier.
104
- "@mysticatea/ts/generic-type-naming" : "off" ,
105
137
"@mysticatea/ts/indent" : "off" , // favor of Prettier.
106
138
"@mysticatea/ts/member-delimiter-style" : "off" , // favor of Prettier.
107
139
"@mysticatea/ts/member-ordering" : "off" ,
0 commit comments