@@ -57,6 +57,8 @@ module.exports = {
57
57
"error" ,
58
58
"@eslint-community/mysticatea/ts/no-duplicate-enum-values" :
59
59
"error" ,
60
+ "@eslint-community/mysticatea/ts/no-duplicate-type-constituents" :
61
+ "off" , // TODO: enable fully in the next major version
60
62
"@eslint-community/mysticatea/ts/no-dynamic-delete" : "error" ,
61
63
"@eslint-community/mysticatea/ts/no-empty-interface" : "error" ,
62
64
"@eslint-community/mysticatea/ts/no-extra-non-null-assertion" :
@@ -65,6 +67,8 @@ module.exports = {
65
67
"@eslint-community/mysticatea/ts/no-floating-promises" : "error" ,
66
68
"@eslint-community/mysticatea/ts/no-for-in-array" : "error" ,
67
69
"@eslint-community/mysticatea/ts/no-implied-eval" : "error" ,
70
+ "@eslint-community/mysticatea/ts/no-import-type-side-effects" :
71
+ "off" , // TODO: enable fully in the next major version
68
72
"@eslint-community/mysticatea/ts/no-inferrable-types" : "error" ,
69
73
"@eslint-community/mysticatea/ts/no-invalid-this" : "error" ,
70
74
"@eslint-community/mysticatea/ts/no-invalid-void-type" : "error" ,
@@ -82,6 +86,7 @@ module.exports = {
82
86
"error" ,
83
87
"@eslint-community/mysticatea/ts/no-misused-new" : "error" ,
84
88
"@eslint-community/mysticatea/ts/no-misused-promises" : "error" ,
89
+ "@eslint-community/mysticatea/ts/no-mixed-enums" : "off" , // TODO: enable fully in the next major version
85
90
"@eslint-community/mysticatea/ts/no-non-null-asserted-nullish-coalescing" :
86
91
"error" ,
87
92
"@eslint-community/mysticatea/ts/no-non-null-asserted-optional-chain" :
@@ -111,6 +116,10 @@ module.exports = {
111
116
"@eslint-community/mysticatea/ts/no-unsafe-argument" : "error" ,
112
117
"@eslint-community/mysticatea/ts/no-unsafe-assignment" : "error" ,
113
118
"@eslint-community/mysticatea/ts/no-unsafe-call" : "error" ,
119
+ "@eslint-community/mysticatea/ts/no-unsafe-declaration-merging" :
120
+ "off" , // TODO: enable fully in the next major version
121
+ "@eslint-community/mysticatea/ts/no-unsafe-enum-comparison" :
122
+ "off" , // TODO: enable fully in the next major version
114
123
"@eslint-community/mysticatea/ts/no-unsafe-member-access" :
115
124
"error" ,
116
125
"@eslint-community/mysticatea/ts/no-unsafe-return" : "error" ,
@@ -157,7 +166,7 @@ module.exports = {
157
166
"@eslint-community/mysticatea/ts/restrict-template-expressions" :
158
167
"error" ,
159
168
"@eslint-community/mysticatea/ts/return-await" : "error" ,
160
- "@eslint-community/mysticatea/ts/sort-type-union-intersection-members " :
169
+ "@eslint-community/mysticatea/ts/sort-type-constituents " :
161
170
"error" ,
162
171
"@eslint-community/mysticatea/ts/switch-exhaustiveness-check" :
163
172
"error" ,
@@ -205,6 +214,7 @@ module.exports = {
205
214
"no-use-before-define" : "off" ,
206
215
"one-var" : "off" ,
207
216
"@eslint-community/mysticatea/ts/ban-types" : "off" ,
217
+ "@eslint-community/mysticatea/ts/block-spacing" : "off" , // favor of Prettier.
208
218
"@eslint-community/mysticatea/ts/brace-style" : "off" , // favor of Prettier.
209
219
"@eslint-community/mysticatea/ts/comma-dangle" : "off" , // favor of Prettier.
210
220
"@eslint-community/mysticatea/ts/comma-spacing" : "off" , // favor of Prettier.
@@ -214,6 +224,8 @@ module.exports = {
214
224
"off" , // I want but this is not so...
215
225
"@eslint-community/mysticatea/ts/func-call-spacing" : "off" , // favor of Prettier.
216
226
"@eslint-community/mysticatea/ts/indent" : "off" , // favor of Prettier.
227
+ "@eslint-community/mysticatea/ts/lines-around-comment" : "off" , // favor of Prettier.
228
+ "@eslint-community/mysticatea/ts/key-spacing" : "off" , // favor of Prettier.
217
229
"@eslint-community/mysticatea/ts/keyword-spacing" : "off" , // favor of Prettier.
218
230
"@eslint-community/mysticatea/ts/member-delimiter-style" : "off" , // favor of Prettier.
219
231
"@eslint-community/mysticatea/ts/member-ordering" : "off" ,
0 commit comments