-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
43 lines (38 loc) · 1.16 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
{
"extends": "airbnb",
"parser": "babel-eslint",
"rules": {
"arrow-parens": "off",
"global-require": "off",
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"no-continue": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"no-undef": "off",
"no-underscore-dangle": "off",
"no-useless-constructor": "warn",
"object-curly-newline": "off",
"prefer-default-export": "off",
"react/button-has-type": "off",
"react/destructuring-assignment": "off",
"react/forbid-prop-types": "off",
"react/jsx-curly-brace-presence": "off",
"react/jsx-one-expression-per-line": "off",
"react/no-access-state-in-setstate": "off",
"react/no-find-dom-node": "off",
"react/prefer-stateless-function": "off",
"comma-dangle": ["error", {
"functions": "never",
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline"
}]
},
"settings": {
"import/resolver": "webpack"
}
}