-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
35 lines (35 loc) · 813 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
29
30
31
32
33
34
35
{
"extends": "standard",
"plugins": ["html"],
"env": {
"browser": true,
"node": true,
"es6": true,
"jquery": true,
"commonjs": true,
"phantomjs": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"no-unused-vars": 2,
"no-console": 1,
"no-negated-condition": 0,
"no-multiple-empty-lines": 1,
"no-mixed-spaces-and-tabs": 2,
"no-multi-spaces": 2,
"max-len": 0,
"semi": 0,
"strict": 0,
"space-before-function-paren": 0,
"comma-dangle": ["error", "only-multiline"],
"indent": ["error", 4]
},
"parser": "babel-eslint"
}