-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
40 lines (40 loc) · 976 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
31
32
33
34
35
36
37
38
39
40
{
"extends": "eslint-config-airbnb",
"env": {
"browser": true,
"mocha": true,
"node": true
},
"parser": "babel-eslint",
"rules": {
"max-len": [0, 200, 4],
"semi": 0,
"no-useless-constructor": 0,
"comma-dangle": 0,
"arrow-body-style": 0,
"no-param-reassign": 0,
"no-unused-vars": 1,
"no-reserved-keys": 0,
"indent": [0, "tab"],
"react/no-multi-comp": 0,
"react/prop-types": 0,
"react/jsx-uses-react": 2,
"react/jsx-uses-vars": 2,
"react/jsx-indent-props": 0,
"react/react-in-jsx-scope": 2,
"react/jsx-indent": [0, 'tab'],
"import/no-extraneous-dependencies": [0, {"devDependencies": false, "optionalDependencies": false, "peerDependencies": false}],
"no-console": 0,
"block-scoped-var": 0,
"padded-blocks": 0,
},
"ecmaFeatures": {
"objectLiteralComputedProperties": true
},
"plugins": [
"react"
],
"globals": {
"NODE_ENV": true,
}
}