forked from theodo/captain-staffing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
62 lines (62 loc) · 1.24 KB
/
.eslintrc
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
{
"env": {
"browser": true,
"es2020": true
},
"reportUnusedDisableDirectives": true,
"extends": [
"eslint:recommended",
"plugin:import/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended"
],
"parser": "@typescript-eslint/parser",
"rules": {
"no-console": "error",
"arrow-body-style": [
"error",
"as-needed"
],
"comma-dangle": [
"error",
"never"
],
"import/prefer-default-export": "off",
"import/first": "off",
"no-param-reassign": "off",
"no-underscore-dangle": "off",
"semi": [
"error",
"always"
],
"react/jsx-filename-extension": "off",
"react/jsx-no-bind": "off",
"react/forbid-prop-types": "off",
"react/sort-comp": "off",
"react/no-array-index-key": "off",
"react/prefer-stateless-function": "off",
"react/require-default-props": "off",
"max-lines": [
"error",
{
"max": 300,
"skipBlankLines": true
}
],
"complexity": [
"error",
6
]
},
"settings": {
"import/resolver": {
"typescript": {},
"node": {
"moduleDirectory": [
"node_modules",
"src"
]
}
}
}
}