-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
42 lines (41 loc) · 889 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
40
41
42
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,
"browser": true
},
"globals": {
ga: 'readonly',
ScrollTimeline: 'readonly',
},
"parserOptions": {
"ecmaVersion": 8,
"ecmaFeatures": {
"jsx": false,
},
"sourceType": "module"
},
"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
"arrow-parens": 0,
// "require-jsdoc": 0
}
}