-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
54 lines (54 loc) · 1.2 KB
/
.eslintrc.json
File metadata and controls
54 lines (54 loc) · 1.2 KB
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
{
"env": {
"browser": true,
"es2021": true
},
"plugins": [
"react",
"eslint-plugin-react-hooks"
],
"extends": [
"plugin:react/recommended",
"standard",
"prettier"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"operator-linebreak": ["error", "after", { "overrides": { "?": "before", ":": "before" } }],
"linebreak-style": "off",
"comma-dangle": "off",
"no-nested-ternary": "off",
"no-underscore-dangle": "off",
"indent": ["error", 4, { "SwitchCase": 1 }],
"global-require": "off",
"no-restricted-syntax": [
"error",
"WithStatement"
],
"import/no-dynamic-require": "off",
"consistent-return": "off",
"no-eval": [
"error",
{
"allowIndirect": true
}
],
"semi": "off"
},
"ignorePatterns": [
"node_modules",
"public",
"dist"
]
}