-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
58 lines (58 loc) · 1.5 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
{
"extends": "airbnb",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"rules": {
"id-length": 0,
"comma-dangle": 0,
"arrow-body-style": 0,
"prefer-template": 0,
"no-param-reassign": 0,
"consistent-return": 0,
"space-infix-ops" : 0,
"max-len": 0,
"padded-blocks": 0,
"no-use-before-define": 0,
"key-spacing": 0,
"space-in-parens": 0,
"no-shadow": 0,
"object-shorthand": 0,
"no-confusing-arrow": 0,
"no-multi-spaces": 0,
"comma-spacing": 0,
"curly": 0,
"new-cap": 0,
"no-underscore-dangle": 0,
"newline-per-chained-call": 0,
"no-plusplus": 0,
"react/prop-types": 0,
"react/prefer-es6-class": 0,
"react/jsx-no-bind": 0,
"react/prefer-stateless-function": 0,
"react/forbid-prop-types": 0,
"react/jsx-closing-bracket-location": 0,
"react/no-unescaped-entities": 0,
"react/no-did-mount-set-state": 0,
"import/prefer-default-export": 0,
"react/jsx-no-target-blank": 0,
"class-methods-use-this": 0,
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/img-has-alt": 0,
"jsx-a11y/label-has-for": 0,
"no-template-curly-in-string": 0,
"react/no-danger": 0,
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"no-unused-expressions": 0,
"import/no-dynamic-require": 0
},
"globals": {
"window": true,
"document": true
}
}