-
Notifications
You must be signed in to change notification settings - Fork 11
/
.eslintrc
53 lines (53 loc) · 998 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"globals": {
"jQuery": true,
"$": true,
"describe": false,
"it": false,
"expect": false,
"$on": false,
"beforeEach": false
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"extends": ["semistandard"],
"rules": {
"indent": [1, 2],
"one-var": 2,
"no-tabs": 1,
"no-path-concat": 0,
"valid-jsdoc": "warn",
"spaced-comment": 0,
"space-before-blocks": 0,
"space-before-function-paren": 0,
"comma-dangle": [1, "always-multiline"],
"eol-last": 1,
"no-multi-spaces": [
2,
{
"exceptions": {
"Property": true,
"VariableDeclarator": true,
"ImportDeclaration": true,
"ObjectExpression": true
},
},
],
"no-warning-comments": 1,
"camelcase": "off"
},
"overrides": [
{
"files": [
"e2e/__tests__/**/*-test.js",
"jest.setup.js"
],
"env": {
"jest": true
}
}
]
}