-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.eslintrc.json
36 lines (36 loc) · 1003 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": ["react-app", "eslint:recommended"],
"parser": "babel-eslint",
"plugins": ["react", "prettier", "react-hooks"],
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": false,
"semi": true,
"max-len": { "code": 120, "ignoreUrls": true },
"tab-width": 2
}
],
"lines-between-class-members": ["error", "always"],
"jsx-a11y/anchor-is-valid": false,
"prefer-arrow-callback": ["error", { "allowNamedFunctions": false, "allowUnboundThis": false }],
"no-empty-function": ["error"],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"react/self-closing-comp": [
"error",
{
"component": true,
"html": true
}
],
"no-extra-boolean-cast": "off",
"no-unused-vars": "error",
"react/jsx-key": "error",
"no-useless-computed-key": "error",
"object-shorthand": "error",
"require-await": "warn",
"eqeqeq": "warn"
}
}