-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
48 lines (39 loc) · 930 Bytes
/
.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
{
"parser": "babel-eslint",
"extends": [
"airbnb"
],
"plugins": [
"babel",
"react",
"promise"
],
"env": {
"browser" : true
},
"globals": {
"describe": true,
"it": true,
"expect": true
},
"rules": {
"semi": ["error", "never"],
"max-len": ["warn", 160],
"comma-dangle": ["error", "never"],
"function-paren-newline": "off",
"object-curly-newline": "off",
"no-bitwise": "off",
"no-underscore-dangle": "off",
"no-unused-expressions": "off",
"import/extensions": "off",
"import/no-unresolved": "off",
"import/prefer-default-export": "off",
"import/no-extraneous-dependencies": "off",
"react/jsx-filename-extension": "off",
"react/no-typos": "off",
"react/require-default-props": "off",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/label-has-for": "off",
"jsx-a11y/aria-role": "off"
}
}