-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
70 lines (70 loc) · 1.66 KB
/
.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"env": {
"browser": true
},
"extends": [
"react-app",
"airbnb-base",
"prettier",
"eslint:recommended"
],
"plugins": ["prettier", "react-hooks"],
"rules": {
"prettier/prettier": ["warn"],
"func-names": ["off"],
"no-param-reassign": ["off"],
"radix": ["error", "as-needed"],
"consistent-return": "off",
"no-useless-escape": "off",
"no-use-before-define": ["warn", {
"functions": false
}],
"object-curly-spacing": ["warn", "always"],
"max-len": "off",
"no-plusplus": "off",
"global-require": "off",
"indent": ["warn", 2, {
"SwitchCase": 1
}],
"class-methods-use-this": "off",
"no-unused-vars": "warn",
"no-console": "warn",
"import/no-extraneous-dependencies": "off",
"keyword-spacing": ["warn", {
"before": true,
"after": true
}],
"space-infix-ops": "warn",
"no-template-curly-in-string": "off",
"no-else-return": "off",
"import/prefer-default-export": "off",
"jsx-a11y/anchor-is-valid": "off",
"import/no-unresolved": "error",
"react/react-in-jsx-scope": "off",
"import/newline-after-import": "warn",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
},
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"settings": {
"react": {
"version": "detect"
}
},
"overrides": [{
"files": ["*.spec.js"],
"rules": {
"no-return-assign": "off",
"no-unused-expressions": "off",
"no-underscore-dangle": "off",
"prettier/prettier": ["off"]
}
}]
}