-
Notifications
You must be signed in to change notification settings - Fork 118
/
.eslintrc.js
39 lines (38 loc) · 860 Bytes
/
.eslintrc.js
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
module.exports = {
// start with google standard style
// https://github.com/google/eslint-config-google/blob/master/index.js
"extends": ["eslint:recommended", "google"],
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 8,
"ecmaFeatures": {
"jsx": false,
"experimentalObjectRestSpread": false
},
"sourceType": "script"
},
"rules": {
// 2 == error, 1 == warning, 0 == off
"indent": [2, 2, {
"SwitchCase": 1,
"VariableDeclarator": 2,
"MemberExpression": 2,
"outerIIFEBody": 0
}],
"max-len": [2, 100, {
"ignoreComments": true,
"ignoreUrls": true,
"tabWidth": 2
}],
"no-var": 2,
"no-console": 1,
"prefer-const": 2,
// Disable rules
"comma-dangle": 0,
"arrow-parens": 0,
"require-jsdoc": 0
}
}