-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
55 lines (55 loc) · 1.6 KB
/
.eslintrc
File metadata and controls
55 lines (55 loc) · 1.6 KB
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
{
"extends": "airbnb",
"plugins": ["react","jsx-a11y","import"],
"globals": {
"window": true,
"localStorage": true,
"$": true,
"console": true,
"document": true,
"location": true
},
"rules": {
"no-else-return": "off",
"no-unused-vars": "off",
"arrow-body-style": "off",
"no-lonely-if": "off",
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"react/jsx-boolean-value": "off",
"jsx-a11y/href-no-hash": "off",
"jsx-a11y/anchor-is-valid": ["warn", { "aspects": ["invalidHref"] }],
"react/no-array-index-key": "off",
"jsx-a11y/img-redundant-alt": "off",
"react/forbid-prop-types": "off",
"no-prototype-builtins": "off",
"quote-props": "off",
"eol-last": "off",
"import/no-duplicates": "off",
"jsx-a11y/no-static-element-interactions": "off",
"one-var": 0,
"max-len": ["error", 80],
"one-var-declaration-per-line": 0,
"new-cap": 0,
"consistent-return": 0,
"no-param-reassign": 0,
"comma-dangle": 0,
"curly": ["error", "multi-line"],
"no-shadow": ["error", { "allow": ["req", "res", "err"] }],
"valid-jsdoc": ["error", {
"requireReturn": true,
"requireReturnType": true,
"requireParamDescription": false,
"requireReturnDescription": true
}],
"require-jsdoc": ["error", {
"require": {
"FunctionDeclaration": true,
"MethodDefinition": true,
"ClassDeclaration": true
}
}]
},
"env": {
"jest": true
}
}