UNPKG

1.07 kBJSONView Raw
1{
2 "rules": {
3 "class-name": true,
4 "curly": true,
5 "eofline": true,
6 "forin": true,
7 "indent": [true, 4],
8 "label-position": true,
9 "label-undefined": true,
10 "max-line-length": [true, 140],
11 "no-arg": true,
12 "no-bitwise": true,
13 "no-console": [true,
14 "debug",
15 "info",
16 "time",
17 "timeEnd",
18 "trace"
19 ],
20 "no-construct": true,
21 "no-debugger": true,
22 "no-duplicate-key": true,
23 "no-duplicate-variable": true,
24 "no-empty": true,
25 "no-eval": true,
26 "no-string-literal": true,
27 "no-trailing-whitespace": true,
28 "no-unreachable": true,
29 "one-line": [true,
30 "check-open-brace",
31 "check-catch",
32 "check-else",
33 "check-whitespace"
34 ],
35 "quotemark": [true, "double"],
36 "radix": true,
37 "semicolon": true,
38 "triple-equals": [true, "allow-null-check"],
39 "variable-name": false,
40 "whitespace": [true,
41 "check-branch",
42 "check-decl",
43 "check-operator",
44 "check-separator",
45 "check-type"
46 ]
47 }
48}