forked from ohtu2018-rv/rv-app-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
39 lines (39 loc) · 1015 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
37
38
39
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"jest": true,
"cypress/globals": true
},
"extends": "react-app",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"parser": "babel-eslint",
"plugins": ["sort-imports-es6-autofix", "cypress"],
"rules": {
"indent": ["error", 4, { "SwitchCase": 1 }],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"arrow-parens": ["error", "always"],
"no-trailing-spaces": "error",
"no-var": "error",
"prefer-const": "error",
"max-len": ["warn", { "code": 120 }],
"no-unused-vars": "warn",
"react/jsx-uses-vars": "warn",
"react/jsx-uses-react": "warn",
"no-console": "off",
"no-undef": "warn",
"sort-imports-es6-autofix/sort-imports-es6": "warn",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
}
}