-
-
Notifications
You must be signed in to change notification settings - Fork 193
/
Copy path.eslintrc
28 lines (28 loc) · 761 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
{
"rules": {
"no-unused-vars": "warn",
"no-trailing-spaces": "warn",
"semi": ["warn", "always"],
"space-before-blocks": "warn",
"no-console": ["off"],
"brace-style": ["warn", "1tbs"],
"camelcase": ["warn", {"properties": "never"}],
"keyword-spacing": "warn",
"space-infix-ops": "warn",
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-unreachable": "warn",
"constructor-super": "warn",
"valid-typeof": "warn"
},
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 8,
"ecmaFeatures": {},
"sourceType": "module"
},
"extends": "eslint:recommended"
}