-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.eslintrc.json
36 lines (35 loc) · 903 Bytes
/
.eslintrc.json
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
{
"extends": ["next/core-web-vitals, prettier, airbnb-base"],
"root": true,
"ignorePatterns": ["**/test", "**/__tests__"],
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"globals": {
"fetch": false,
"document": false,
"window": false,
"localStorage": false,
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"requireConfigFile": false,
"ecmaVersion": 2018
},
"plugins": ["react-hooks", "prettier"],
"rules": {
"indent": ["warn", 2],
"no-unused-vars": ["off", { "vars": "local" }],
"prefer-const": "warn",
"quotes": ["warn", "single"],
"space-infix-ops": "warn",
"prettier/prettier": "error",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn" // <--- THIS IS THE NEW RULE
}
}