Skip to content

Commit 6faee6b

Browse files
committed
add more rules
1 parent ae2dc3f commit 6faee6b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

eslint.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,20 @@ export default [
1919
pluginReact.configs.flat.recommended,
2020
{
2121
rules: {
22+
"@typescript-eslint/ban-ts-comment": "off",
23+
"@typescript-eslint/no-non-null-asserted-optional-chain": "off",
2224
"@typescript-eslint/no-empty-object-type": "off",
2325
"@typescript-eslint/no-explicit-any": "off",
2426
"@typescript-eslint/no-unused-expressions": "off",
2527
"@typescript-eslint/no-unused-vars": "off",
2628
"no-empty-pattern": "off",
2729
"no-empty": "off",
2830
"no-var": "off",
31+
"no-unsafe-optional-chaining": "off",
32+
"no-useless-escape": "off",
2933
"prefer-const": "off",
34+
"react/jsx-key": "off",
35+
"react/no-unescaped-entities": "off",
3036
}
3137
}
3238
];

0 commit comments

Comments
 (0)