-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
25 lines (24 loc) · 855 Bytes
/
.eslintrc.js
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
module.exports = {
"extends": "airbnb",
"rules": {
"indent": ["error", 4],
"react/jsx-indent": ["error", 4],
"react/jsx-indent-props": ["error", 4],
"import/extensions": "off",
"arrow-parens": "off",
"semi": "off",
"react/destructuring-assignment": "off",
"object-curly-newline": "off",
"no-nested-ternary": "off",
"react/button-has-type": "off",
"react/require-default-props": "off",
"react/forbid-prop-types": "off",
"react/jsx-filename-extension": "off",
"react/prefer-stateless-function": "off",
"react/no-access-state-in-setstate": "off",
"react/jsx-props-no-spreading": "off",
"object-shorthand": "off",
"react/jsx-one-expression-per-line": "off",
"max-classes-per-file": "off",
},
}