aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/.eslintrc.json
blob: 991fc93d5ae9f554009a39daeeb81db998ff12fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
  "env": {
    "browser": true,
    "es2021": true,
    "node": true,
    "commonjs": true,
    "es6": true,
    "jest": true
  },
  "extends": [
    "eslint:recommended",
    "plugin:react/recommended",
    "plugin:import/recommended"
  ],
  "parserOptions": {
    "ecmaFeatures": {
      "jsx": true
    },
    "ecmaVersion": 2021,
    "sourceType": "module"
  },
  "plugins": ["prettier", "react", "react-hooks", "unused-imports"],
  "rules": {
    "strict": 0,
    "react/jsx-uses-react": "error",
    "react/prop-types": "off",
    "react/display-name": "off",
    "react-hooks/rules-of-hooks": "error",
    "react-hooks/exhaustive-deps": [
      "warn",
      {
        "additionalHooks": "use(CustomCompare(Callback|Effect)|Cancelable(Layout)?Effect)"
      }
    ],
    "unused-imports/no-unused-imports": "error",
    "import/order": ["error", { "newlines-between": "never" }],
    "import/no-unassigned-import": ["error", { "allow": ["**/*.css"] }],
    "prettier/prettier": "error"
  },
  "settings": {
    "react": {
      "version": "detect"
    },
    "import/resolver": {
      "node": {
        "extensions": [".js", ".jsx"],
        "moduleDirectory": ["node_modules", "src"]
      }
    }
  }
}