@@ -19,40 +19,74 @@ 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/method-signature-style" : "error" ,
33+ "@mysticatea/ts/naming-convention" : "error" ,
2834 "@mysticatea/ts/no-array-constructor" : "error" ,
35+ "@mysticatea/ts/no-base-to-string" : "error" ,
36+ "@mysticatea/ts/no-dupe-class-members" : "error" ,
37+ "@mysticatea/ts/no-dynamic-delete" : "error" ,
2938 "@mysticatea/ts/no-empty-interface" : "error" ,
39+ "@mysticatea/ts/no-extra-non-null-assertion" : "error" ,
40+ "@mysticatea/ts/no-extra-semi" : "error" ,
3041 "@mysticatea/ts/no-extraneous-class" : "error" ,
3142 "@mysticatea/ts/no-floating-promises" : "error" ,
3243 "@mysticatea/ts/no-for-in-array" : "error" ,
44+ "@mysticatea/ts/no-implied-eval" : "error" ,
3345 "@mysticatea/ts/no-inferrable-types" : "error" ,
46+ "@mysticatea/ts/no-invalid-this" : "error" ,
47+ "@mysticatea/ts/no-invalid-void-type" : "error" ,
3448 "@mysticatea/ts/no-misused-new" : "error" ,
3549 "@mysticatea/ts/no-misused-promises" : "error" ,
50+ "@mysticatea/ts/no-non-null-asserted-optional-chain" : "error" ,
3651 "@mysticatea/ts/no-parameter-properties" : "error" ,
3752 "@mysticatea/ts/no-require-imports" : "error" ,
3853 "@mysticatea/ts/no-this-alias" : [
3954 "error" ,
4055 { allowDestructuring : true } ,
4156 ] ,
57+ "@mysticatea/ts/no-throw-literal" : "error" ,
58+ "@mysticatea/ts/no-unnecessary-boolean-literal-compare" :
59+ "error" ,
4260 "@mysticatea/ts/no-unnecessary-qualifier" : "error" ,
4361 "@mysticatea/ts/no-unnecessary-type-arguments" : "error" ,
4462 "@mysticatea/ts/no-unnecessary-type-assertion" : "error" ,
63+ "@mysticatea/ts/no-unsafe-assignment" : "error" ,
64+ "@mysticatea/ts/no-unsafe-call" : "error" ,
65+ "@mysticatea/ts/no-unsafe-member-access" : "error" ,
66+ "@mysticatea/ts/no-unsafe-return" : "error" ,
67+ "@mysticatea/ts/no-unused-expressions" : "error" ,
68+ "@mysticatea/ts/no-unused-vars-experimental" : "error" ,
4569 "@mysticatea/ts/no-var-requires" : "error" ,
70+ "@mysticatea/ts/prefer-as-const" : "error" ,
4671 // https://github.com/typescript-eslint/typescript-eslint/issues/454
4772 "@mysticatea/ts/prefer-function-type" : "off" ,
4873 "@mysticatea/ts/prefer-includes" : "error" ,
4974 "@mysticatea/ts/prefer-namespace-keyword" : "error" ,
75+ "@mysticatea/ts/prefer-nullish-coalescing" : "error" ,
76+ "@mysticatea/ts/prefer-optional-chain" : "error" ,
77+ "@mysticatea/ts/prefer-readonly-parameter-types" : "error" ,
5078 // https://github.com/typescript-eslint/typescript-eslint/issues/946
5179 "@mysticatea/ts/prefer-readonly" : "off" ,
80+ "@mysticatea/ts/prefer-reduce-type-parameter" : "off" ,
5281 "@mysticatea/ts/prefer-regexp-exec" : "error" ,
5382 "@mysticatea/ts/prefer-string-starts-ends-with" : "error" ,
83+ "@mysticatea/ts/prefer-ts-expect-error" : "off" ,
5484 "@mysticatea/ts/restrict-plus-operands" : "error" ,
5585 "@mysticatea/ts/require-array-sort-compare" : "error" ,
86+ "@mysticatea/ts/restrict-template-expressions" : "error" ,
87+ "@mysticatea/ts/return-await" : "error" ,
88+ "@mysticatea/ts/space-before-function-paren" : "error" ,
89+ "@mysticatea/ts/switch-exhaustiveness-check" : "error" ,
5690 "@mysticatea/ts/triple-slash-reference" : "error" ,
5791 // なんか誤検知が多い...
5892 "@mysticatea/ts/unbound-method" : [
@@ -61,6 +95,7 @@ module.exports = {
6195 ] ,
6296 // https://github.com/typescript-eslint/typescript-eslint/issues/452
6397 "@mysticatea/ts/unified-signatures" : "off" ,
98+ "@mysticatea/ts/lines-between-class-members" : "error" ,
6499 "@mysticatea/prettier" : [
65100 "error" ,
66101 {
@@ -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