@@ -19,40 +19,75 @@ module.exports = {
1919 "@mysticatea/ts/adjacent-overload-signatures" : "error" ,
2020 "@mysticatea/ts/array-type" : "error" ,
2121 "@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" ,
2425 "@mysticatea/ts/consistent-type-assertions" : "error" ,
26+ "@mysticatea/ts/default-param-last" : "error" ,
27+ "@mysticatea/ts/dot-notation" : "error" ,
2528 "@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" ,
2835 "@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" ,
2939 "@mysticatea/ts/no-empty-interface" : "error" ,
40+ "@mysticatea/ts/no-extra-non-null-assertion" : "error" ,
41+ "@mysticatea/ts/no-extra-semi" : "error" ,
3042 "@mysticatea/ts/no-extraneous-class" : "error" ,
3143 "@mysticatea/ts/no-floating-promises" : "error" ,
3244 "@mysticatea/ts/no-for-in-array" : "error" ,
45+ "@mysticatea/ts/no-implied-eval" : "error" ,
3346 "@mysticatea/ts/no-inferrable-types" : "error" ,
47+ "@mysticatea/ts/no-invalid-this" : "error" ,
48+ "@mysticatea/ts/no-invalid-void-type" : "error" ,
3449 "@mysticatea/ts/no-misused-new" : "error" ,
3550 "@mysticatea/ts/no-misused-promises" : "error" ,
51+ "@mysticatea/ts/no-non-null-asserted-optional-chain" : "error" ,
3652 "@mysticatea/ts/no-parameter-properties" : "error" ,
3753 "@mysticatea/ts/no-require-imports" : "error" ,
3854 "@mysticatea/ts/no-this-alias" : [
3955 "error" ,
4056 { allowDestructuring : true } ,
4157 ] ,
58+ "@mysticatea/ts/no-throw-literal" : "error" ,
59+ "@mysticatea/ts/no-unnecessary-boolean-literal-compare" :
60+ "error" ,
4261 "@mysticatea/ts/no-unnecessary-qualifier" : "error" ,
4362 "@mysticatea/ts/no-unnecessary-type-arguments" : "error" ,
4463 "@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" ,
4570 "@mysticatea/ts/no-var-requires" : "error" ,
71+ "@mysticatea/ts/prefer-as-const" : "error" ,
4672 // https://github.com/typescript-eslint/typescript-eslint/issues/454
4773 "@mysticatea/ts/prefer-function-type" : "off" ,
4874 "@mysticatea/ts/prefer-includes" : "error" ,
4975 "@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" ,
5079 // https://github.com/typescript-eslint/typescript-eslint/issues/946
5180 "@mysticatea/ts/prefer-readonly" : "off" ,
81+ "@mysticatea/ts/prefer-reduce-type-parameter" : "off" ,
5282 "@mysticatea/ts/prefer-regexp-exec" : "error" ,
5383 "@mysticatea/ts/prefer-string-starts-ends-with" : "error" ,
84+ "@mysticatea/ts/prefer-ts-expect-error" : "off" ,
5485 "@mysticatea/ts/restrict-plus-operands" : "error" ,
5586 "@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" ,
5691 "@mysticatea/ts/triple-slash-reference" : "error" ,
5792 // なんか誤検知が多い...
5893 "@mysticatea/ts/unbound-method" : [
@@ -75,8 +110,6 @@ module.exports = {
75110 ] ,
76111
77112 // Replacements
78- camelcase : "off" ,
79- "@mysticatea/ts/camelcase" : "error" ,
80113 "no-empty-function" : "off" ,
81114 "@mysticatea/ts/no-empty-function" : "error" ,
82115 "no-useless-constructor" : "off" ,
@@ -101,7 +134,6 @@ module.exports = {
101134 "@mysticatea/ts/consistent-type-definitions" : "off" ,
102135 "@mysticatea/ts/explicit-function-return-type" : "off" , // I want but this is not so...
103136 "@mysticatea/ts/func-call-spacing" : "off" , // favor of Prettier.
104- "@mysticatea/ts/generic-type-naming" : "off" ,
105137 "@mysticatea/ts/indent" : "off" , // favor of Prettier.
106138 "@mysticatea/ts/member-delimiter-style" : "off" , // favor of Prettier.
107139 "@mysticatea/ts/member-ordering" : "off" ,
0 commit comments