We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae2dc3f commit 6faee6bCopy full SHA for 6faee6b
eslint.config.js
@@ -19,14 +19,20 @@ export default [
19
pluginReact.configs.flat.recommended,
20
{
21
rules: {
22
+ "@typescript-eslint/ban-ts-comment": "off",
23
+ "@typescript-eslint/no-non-null-asserted-optional-chain": "off",
24
"@typescript-eslint/no-empty-object-type": "off",
25
"@typescript-eslint/no-explicit-any": "off",
26
"@typescript-eslint/no-unused-expressions": "off",
27
"@typescript-eslint/no-unused-vars": "off",
28
"no-empty-pattern": "off",
29
"no-empty": "off",
30
"no-var": "off",
31
+ "no-unsafe-optional-chaining": "off",
32
+ "no-useless-escape": "off",
33
"prefer-const": "off",
34
+ "react/jsx-key": "off",
35
+ "react/no-unescaped-entities": "off",
36
}
37
38
];
0 commit comments