-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
46 lines (46 loc) · 1.19 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
{
"extends": "airbnb",
"rules": {
"no-underscore-dangle": 0,
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore"
}],
"no-param-reassign": ["error", {
"props": false
}],
"function-paren-newline": 0,
"react/no-typos": 0,
"react/jsx-filename-extension": 0,
"react/jsx-wrap-multilines": 0,
"react/destructuring-assignment": 0,
"jsx-a11y/label-has-associated-control": 0,
"jsx-a11y/anchor-is-valid": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/label-has-for": 0,
"no-restricted-globals": 0,
"no-nested-ternary": 0,
"max-len": ["error", 120, 2, {
"ignoreUrls": true,
"ignoreComments": false,
"ignoreRegExpLiterals": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}],
"implicit-arrow-linebreak": 0,
"object-curly-newline": 0
},
"globals": {
"jest": false,
"describe": false,
"it": false,
"expect": false,
"afterAll": false,
"beforeAll": false,
"afterEach": false,
"beforeEach": false
}
}