-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
60 lines (60 loc) · 1.58 KB
/
.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"extends": [
"eslint:recommended"
],
"env": {
"amd": true,
"browser": true,
"jquery": true,
"node": true,
"es6": true,
"worker": true,
"commonjs": true,
"mocha": true,
"jasmine": true,
"jest": true,
"mongo": true
},
"parserOptions":{
"ecmaVersion": 8,
"sourceType": "module",
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"impliedStrict": true
}
},
"settings": {
"import/extensions": [".js"],
"import/resolver": {
"node": {
"extensions": [".js"]
}
}
},
"plugins": [
"import",
"async-await",
"eslint-plugin-prettier",
"import"
],
"rules": {
"constructor-super": "warn",
"curly": "error",
"indent": [2, "tab", {"SwitchCase": 1}],
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "warn",
"no-unreachable": "warn",
"no-unused-vars": "warn",
"no-console": "error",
"valid-typeof": "warn",
"quotes": ["error", "single"],
"keyword-spacing": ["error", { "before": true }],
"space-before-function-paren": ["error", {"anonymous": "always", "named": "never", "asyncArrow": "always"}],
"linebreak-style": ["error", "unix"],
"semi": ["error", "always"],
"one-var": ["error", "never"],
"async-await/space-after-async": 1,
"async-await/space-after-await": 1
}
}