forked from akamai/boomerang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
42 lines (42 loc) · 918 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
{
"env": {
"browser":true
},
"plugins": [
"html"
],
"globals": {
"BOOMR":true,
"BOOMR_start":true,
"BOOMR_lstart":true,
"BOOMR_onload":true,
"BOOMR_test":true,
"console":false,
"unescape":false,
"BOOMR_configt":true,
"BOOMR_check_doc_domain":true
},
"rules": {
"no-mixed-spaces-and-tabs":[2, true],
"console":0,
"camelcase":0,
"strict":0,
"quotes":[2, "double", "avoid-escape"],
"new-cap":0,
"space-infix-ops":0,
"no-console":0,
"no-delete-var":0,
"no-underscore-dangle":0,
"no-multi-spaces":0,
"dot-notation":[2, {"allowKeywords": false}],
"space-unary-ops":0,
"key-spacing":0,
"no-empty":2,
"brace-style": [1, "stroustrup", { "allowSingleLine": true }],
"space-after-keywords": [2, "always"],
"no-space-before-semi": 0,
"indent": [2, "tab"],
"space-before-function-paren": [2, "never"],
"no-trailing-spaces": [2, { skipBlankLines: false }]
}
}