-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
30 lines (30 loc) · 964 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
{
"parser": "babel-eslint",
"rules": {
"no-console": 0,
"linebreak-style":0,
"comma-dangle": ["error", "never"],
"indent": [2, 4],
"max-len": ["error", { "comments": 500, "code": 200 }],
"no-extend-native": ["error", { "exceptions": ["String"] }],
"no-else-return": [0],
"prop-types": [0],
"class-methods-use-this": [0],
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"react/display-name": [0],
"no-plusplus": [0],
"import/prefer-default-export": [0],
"arrow-parens": [0],
"object-curly-newline": [0],
"no-param-reassign": [0],
"prefer-destructuring": [0],
"no-await-in-loop": [0],
"no-restricted-syntax": [0],
"import/no-cycle": [0]
},
"env": {
"browser": true,
"node": true
},
"extends": ["airbnb-base", "plugin:react/recommended"]
}