File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,8 @@ const config: FlatConfig[] = [
45
45
} ,
46
46
// extends ...
47
47
eslint . configs . recommended ,
48
- ...tseslint . configs . strictTypeChecked ,
48
+ ...tseslint . configs . strict ,
49
+ // ...tseslint.configs.strictTypeChecked,
49
50
perfectionistNatural ,
50
51
jsdocPlugin . configs [ "flat/recommended-typescript-error" ] ,
51
52
eslintPluginPlugin . configs [ "flat/all-type-checked" ] ,
@@ -111,6 +112,7 @@ const config: FlatConfig[] = [
111
112
"@typescript-eslint/explicit-function-return-type" : "off" ,
112
113
"@typescript-eslint/no-confusing-void-expression" : "off" ,
113
114
"@typescript-eslint/no-explicit-any" : "error" ,
115
+ "@typescript-eslint/no-misused-promises" : "off" ,
114
116
"@typescript-eslint/no-unnecessary-parameter-property-assignment" : "warn" ,
115
117
"@typescript-eslint/no-unnecessary-type-parameters" : "warn" ,
116
118
"@typescript-eslint/no-unused-vars" : [
Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ export type RuleCategoryEmoji =
17
17
| "❌" // deprecated
18
18
| "🎨" // style
19
19
| "🐞" // debug
20
- | "🧐" // suspicious
21
20
| "📖" // convention
22
21
| "🔒" // security
23
22
| "🚀" // perf
24
23
| "🤔" // pedantic
25
- | "🤯" ; // complexity
24
+ | "🤯" // complexity
25
+ | "🧐" ; // suspicious
You can’t perform that action at this time.
0 commit comments