forked from mbucknell/WQP_UI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
45 lines (45 loc) · 909 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
{
"env": {
"commonjs": true,
"es6": true,
"jasmine": true
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
},
"sourceType": "module"
},
"plugins": [
"jasmine"
],
"extends": "eslint:recommended",
"rules": {
"comma-dangle": [2,"never"],
"linebreak-style": ["error", "unix"],
"no-console": "off",
"no-extra-parens": [2,"all"],
"no-use-before-define": 2,
"brace-style": [1,"1tbs",{}],
"no-mixed-spaces-and-tabs": 2,
"quotes": ["error", "single"],
"semi": ["error", "always"]
},
"globals": {
"console": true,
"document": true,
"process": true,
"window": true,
"XMLHttpRequest": true,
"PORTAL": true,
"SITES": true,
"COVERAGE": true,
"NLDI": true,
"WQP": true,
"L": true,
"$": true,
"Config": true,
"sinon": true
}
}