-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.eslintrc
More file actions
39 lines (39 loc) · 824 Bytes
/
.eslintrc
File metadata and controls
39 lines (39 loc) · 824 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
33
34
35
36
37
38
39
{
"parser": "babel-eslint",
"extends": [
"standard",
"prettier",
"prettier/babel",
"prettier/standard"
],
"plugins": [
"babel",
"prettier"
],
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"legacyDecorators": true
}
},
"env": {
"es6": true,
"node": true
},
"rules": {
"prettier/prettier": "warn",
"no-useless-constructor": "off",
"no-unused-vars": "warn",
"no-extra-boolean-cast": "off",
"camelcase": "off",
"import/no-absolute-path": "off",
"prefer-const": "off",
"no-useless-computed-key": "off",
"no-useless-return": "off",
"import/first": "off",
"no-return-await": "off"
},
"globals": {
"__DEV__": true
}
}