We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32cd42d commit e967fb8Copy full SHA for e967fb8
.eslintrc.json
@@ -1,3 +1,13 @@
1
{
2
- "extends": ["next/core-web-vitals", "next/typescript"]
+ "extends": ["next/core-web-vitals", "next/typescript"],
3
+ "rules": {
4
+ "@typescript-eslint/no-unused-vars": "warn",
5
+ "@typescript-eslint/no-explicit-any": "warn",
6
+ "prefer-const": "warn",
7
+ "react-hooks/exhaustive-deps": "warn",
8
+ "react/no-unescaped-entities": "warn",
9
+ "react-hooks/rules-of-hooks": "warn",
10
+ "import/no-named-as-default": "warn",
11
+ "import/no-unresolved": "warn"
12
+ }
13
}
0 commit comments