forked from gregberge/loadable-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
23 lines (23 loc) · 655 Bytes
/
.eslintrc.json
File metadata and controls
23 lines (23 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"root": true,
"parser": "babel-eslint",
"extends": ["airbnb", "prettier"],
"env": {
"jest": true
},
"rules": {
"react/jsx-one-expression-per-line": "off",
"no-plusplus": "off",
"no-param-reassign": "off",
"no-nested-ternary": "off",
"react/jsx-filename-extension": ["error", { "extensions": [".js"] }],
"react/jsx-wrap-multilines": "off",
"react/no-unused-state": "off",
"react/destructuring-assignment": "off",
"react/prop-types": "off",
"react/sort-comp": "off",
"react/jsx-props-no-spreading": "off",
"react/state-in-constructor": "off",
"import/prefer-default-export": "off"
}
}