File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,7 @@ const tseslintOverrides: ConfigLike = {
121
121
'@typescript-eslint/no-unsafe-return' : 'warn' ,
122
122
123
123
'@typescript-eslint/unbound-method' : [ 'error' , { ignoreStatic : true } ] ,
124
+ '@typescript-eslint/no-misused-promises' : [ 'warn' , { checksVoidReturn : { attributes : false } } ] ,
124
125
125
126
'@typescript-eslint/prefer-nullish-coalescing' : 'off' ,
126
127
'@typescript-eslint/explicit-function-return-type' : 'off' ,
@@ -212,6 +213,7 @@ const externalPluginRuleOverrides: ConfigLike = {
212
213
'unicorn/consistent-destructuring' : 'off' ,
213
214
'unicorn/no-await-expression-member' : 'off' ,
214
215
'unicorn/explicit-length-check' : 'off' , // why should i
216
+ 'unicorn/prefer-type-error' : 'off' , // sindre doesn't know when my typeof x === 'string' checks actually mean something is a type error
215
217
216
218
'react/react-in-jsx-scope' : 'off' ,
217
219
'react/prop-types' : 'off' ,
You can’t perform that action at this time.
0 commit comments