-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
38 lines (38 loc) · 860 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
{
"env": {
"browser": true,
"jquery": true,
"prototypejs": true
},
"globals": {
"$": true,
"jQuery": false
},
"rules": {
"block-scoped-var": "error",
"camelcase": "off",
"curly": "off",
"dot-notation": "off",
"eqeqeq": "error",
"indent": [
"error",
4,
{
"ArrayExpression": "off",
"MemberExpression": "off",
"SwitchCase": 1
}
],
"linebreak-style": "error",
"no-bitwise": "error",
"no-cond-assign": [
"error",
"except-parens"
],
"no-eval": "error",
"no-loop-func": "error",
"no-shadow": "off",
"no-undef": "off",
"no-unused-expressions": "error"
}
}