-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
85 lines (85 loc) · 2.29 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb-base",
"plugin:import/recommended",
"plugin:fp/recommended",
"prettier"
],
"plugins": ["prettier", "import", "import-helpers", "promise", "fp"],
"parserOptions": {
"ecmaFeatures": {
"jsx": false
},
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
"arrow-parens": "error",
"class-methods-use-this": "off",
"comma-dangle": "off",
"fp/no-delete": "warn",
"fp/no-mutating-assign": "warn",
"fp/no-mutating-methods": "off",
"fp/no-mutation": [
"warn",
{
"allowThis": true,
"commonjs": true,
"exceptions": [
{
"property": "propTypes"
},
{
"property": "defaultProps"
},
{
"property": "current"
}
]
}
],
"fp/no-nil": "off",
"fp/no-unused-expression": "off",
"import-helpers/order-imports": [
"warn",
{
"alphabetize": {
"ignoreCase": true,
"order": "asc"
},
"groups": [
"module",
"/modules/",
"/services/",
"/exceptions/",
"/shared/",
"/utils/",
"/configs/",
["parent", "sibling", "index"]
],
"newlinesBetween": "always"
}
],
"import/extensions": 0,
"import/no-cycle": "off",
"import/prefer-default-export": "error",
"max-len": [
"warn",
{
"code": 200,
"ignoreComments": true,
"tabWidth": 4
}
],
"no-console": "off",
"no-param-reassign": "error",
"no-unused-vars": "error",
"no-useless-computed-key": "error",
"object-curly-spacing": "error",
"prettier/prettier": ["warn"]
}
}