@@ -66,6 +66,21 @@ export default tseslint.config(
66
66
"import/no-cycle" : "error" ,
67
67
// Never allow extensions in import paths, except for JSON files where they are required.
68
68
"import/extensions" : [ "error" , "never" , { json : "always" } ] ,
69
+
70
+ // Rules disabled during eslint 9 migration
71
+ "github/filenames-match-regex" : "off" ,
72
+ "@typescript-eslint/restrict-template-expressions" : "off" ,
73
+ "@typescript-eslint/no-unsafe-return" : "off" ,
74
+ "@typescript-eslint/no-unsafe-assignment" : "off" ,
75
+ "@typescript-eslint/no-unsafe-argument" : "off" ,
76
+ "@typescript-eslint/no-unsafe-member-access" : "off" ,
77
+ "@typescript-eslint/no-unsafe-call" : "off" ,
78
+ "@typescript-eslint/restrict-plus-operands" : "off" ,
79
+ "@typescript-eslint/unbound-method" : "off" ,
80
+ "@typescript-eslint/require-await" : "off" ,
81
+ "@typescript-eslint/no-misused-promises" : "off" ,
82
+ "@typescript-eslint/no-base-to-string" : "off" ,
83
+ "@typescript-eslint/no-array-delete" : "off" ,
69
84
} ,
70
85
settings : {
71
86
"import/parsers" : {
@@ -157,6 +172,12 @@ export default tseslint.config(
157
172
} ,
158
173
rules : {
159
174
"@typescript-eslint/no-explicit-any" : "off" ,
175
+
176
+ // Rules disabled during eslint 9 migration
177
+ "@typescript-eslint/no-unsafe-assignment" : "off" ,
178
+ "@typescript-eslint/no-unsafe-member-access" : "off" ,
179
+ "@typescript-eslint/no-unsafe-call" : "off" ,
180
+ "@typescript-eslint/unbound-method" : "off" ,
160
181
} ,
161
182
} ,
162
183
{
@@ -170,6 +191,11 @@ export default tseslint.config(
170
191
// Storybook doesn't use the automatic JSX runtime in the addon yet, so we need to allow
171
192
// `React` to be imported.
172
193
"import/no-namespace" : [ "error" , { ignore : [ "react" ] } ] ,
194
+
195
+ // Rules disabled during eslint 9 migration
196
+ "@typescript-eslint/no-unsafe-argument" : "off" ,
197
+ "storybook/no-renderer-packages" : "off" ,
198
+ "storybook/story-exports" : "off" ,
173
199
} ,
174
200
} ,
175
201
eslintPrettierRecommended ,
0 commit comments