We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fe023b6 + 4457243 commit b88b9eaCopy full SHA for b88b9ea
client/.eslintrc.json
@@ -0,0 +1,21 @@
1
+{
2
+ "root": true,
3
+ "env": {
4
+ "browser": true,
5
+ "es2020": true,
6
+ "node": true
7
+ },
8
+ "extends": [
9
+ "eslint:recommended"
10
+ ],
11
+ "ignorePatterns": ["dist", ".eslintrc.json"],
12
+ "parser": "@typescript-eslint/parser",
13
+ "plugins": ["@typescript-eslint", "react-refresh"],
14
+ "rules": {
15
+ "react-refresh/only-export-components": "warn",
16
+ "@typescript-eslint/no-explicit-any": "warn",
17
+ "@typescript-eslint/no-unused-vars": "warn",
18
+ "no-unused-vars": "off",
19
+ "no-undef": "off"
20
+ }
21
+}
0 commit comments