-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
.eslintrc
60 lines (59 loc) · 1.63 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
{
"extends": "airbnb",
"root": true,
"parser": "babel-eslint",
"env": {
"mocha": true,
},
"plugins": ["mocha"],
"settings": {
"mocha/additionalTestFunctions": ["itIf", "describeIf"],
},
"rules": {
"max-len": 0,
"no-param-reassign": 0,
"padded-blocks": 0,
"react/no-did-mount-set-state": 0,
"react/no-will-update-set-state": 0,
"react/no-multi-comp": 0,
"react/prefer-es6-class": 0,
"react/prefer-stateless-function": 0,
"react/prop-types": 0,
"react/no-string-refs": 0,
"import/no-extraneous-dependencies": [2, {
"devDependencies": true
}],
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/anchor-has-content": 0,
"jsx-a11y/anchor-is-valid": 0,
"jsx-a11y/label-has-for": 0,
"jsx-a11y/label-has-associated-control": 0,
"react/jsx-curly-brace-presence": 0,
"react/no-danger": 1,
"react/jsx-one-expression-per-line": 0,
"react/no-this-in-sfc": 0, // TODO: re-enable once fixed
"react/destructuring-assignment": 1,
"react/no-access-state-in-setstate": 1,
"react/button-has-type": 1,
"mocha/no-exclusive-tests": 2,
"mocha/no-global-tests": 2,
"mocha/no-nested-tests": 2,
"mocha/no-pending-tests": 2,
"mocha/no-sibling-hooks": 2,
"mocha/no-skipped-tests": 1,
"mocha/no-top-level-hooks": 2,
"mocha/valid-suite-description": [2, "^(?!should )"],
"mocha/valid-test-description": [2, "^(?!should )"],
},
"overrides": [
{
"files": [
"test/_helpers/*",
],
"rules": {
"mocha/no-exclusive-tests": 0,
},
}
],
}