-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc.json
More file actions
35 lines (35 loc) · 744 Bytes
/
.eslintrc.json
File metadata and controls
35 lines (35 loc) · 744 Bytes
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
{
"parser": "@babel/eslint-parser",
"root": true,
"extends": ["react-app", "prettier"],
"env": {
"node": true,
"browser": true
},
"parserOptions": {
"ecmaVersion": 2020,
"requireConfigFile": false,
"ecmaFeatures": {
"legacyDecorators": true,
"jsx": true
}
},
"settings": {
"react": {
"version": "17"
}
},
"globals": { "Echo": true, "Pusher": true, "route": true },
"rules": {
"no-eval": 0,
"react-hooks/exhaustive-deps": 0,
"array-callback-return": 0,
"no-extend-native": 0,
"no-shadow": 0,
"camelcase": 0,
"import/no-cycle": "error",
"react/jsx-uses-react": 0,
"react/react-in-jsx-scope": 0,
"jest/no-commented-out-tests": 0
}
}