forked from spocke/php-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
43 lines (41 loc) · 776 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
{
"env": {
"browser": true,
"amd": true
},
"globals": {
"escape": true,
"unescape": true,
"$": true,
"brackets": true,
"exports": true,
"module": true
},
"rules": {
"quotes": 0,
"camelcase": 0,
"strict": 0,
"eqeqeq": 0,
"no-underscore-dangle": 0,
"consistent-return": 0,
"no-shadow": 0,
"no-use-before-define": 0,
"brace-style": [2, "1tbs"],
"func-style": [2, "declaration"],
"guard-for-in": 0,
"no-floating-decimal": 2,
"no-nested-ternary": 2,
"radix": 2,
"wrap-iife": [2, "inside"],
"consistent-this": [2, "self"],
"no-bitwise": 2,
"max-params": [2, 50],
"max-depth": [1, 8],
"max-statements": [2, 150],
"max-len": [1, 140, 4],
"eol-last": 0,
"no-console": 0,
"new-cap": 0,
"no-mixed-requires": 0
}
}