-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
32 lines (32 loc) · 750 Bytes
/
.eslintrc
File metadata and controls
32 lines (32 loc) · 750 Bytes
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
{
"extends": "airbnb",
"parser": "babel-eslint",
"env": {
"node": true,
"es6": true,
"browser": true
},
"rules": {
"react/jsx-filename-extension": [
1,
{
"extensions": [".js", ".jsx"]
}
],
"implicit-arrow-linebreak": "off",
"comma-dangle": "off",
"indent": "off",
"no-trailing-spaces": "off",
"react/forbid-prop-types": "off",
"react/jsx-one-expression-per-line": "off",
"dot-notation": "off",
"react/jsx-props-no-spreading": "off",
"import/no-cycle": "off",
"class-methods-use-this": "off",
"no-plusplus": "off",
"no-case-declarations": "off",
"camelcase": "off",
"function-paren-newline": "off",
"object-curly-newline": "off"
}
}