-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
47 lines (47 loc) · 1.33 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
{
"root": true,
"extends": "airbnb",
"env": {
"node": true,
"es6": true,
"jasmine": true,
"browser": true
},
"rules": {
"max-len":[2, 80, 2],
"indent": [2, 2],
"one-var": 0,
"one-var-declaration-per-line": 0,
"no-underscore-dangle": 0,
"new-cap": 0,
"no-sequences":0,
"no-prototype-builtins" : 0,
"no-duplicate-imports": 0,
"react/jsx-filename-extension": 0,
"consistent-return": 0,
"no-param-reassign": 0,
"comma-dangle": 0,
"react/prefer-stateless-function": 0,
"class-methods-use-this": ["error", { "exceptMethods": ["confirmDeletion", "componentDidMount", "closeSideNav", "render", "searchDocuments", "findMatching"] }],
"react/forbid-prop-types": ["error", { "forbid": [] }],
"jsx-a11y/no-static-element-interactions": 0,
"react/no-danger": 0,
"import/extensions": 0,
"no-extra-boolean-cast": 0,
"curly": [2, "multi-line"],
"no-shadow": [2, { "allow": ["req", "res", "err"] }],
"valid-jsdoc": [2, {
"requireReturn": true,
"requireReturnType": true,
"requireParamDescription": false,
"requireReturnDescription": true
}],
"require-jsdoc": [2, {
"require": {
"FunctionDeclaration": true,
"MethodDefinition": true,
"ClassDeclaration": true
}
}]
}
}