UNPKG

1.5 kBJSONView Raw
1{
2 "rules": {
3 "align": [true, "parameters"],
4 "class-name": true,
5 "curly": true,
6 "eofline": true,
7 "forin": true,
8 "indent": [true, "spaces"],
9 "label-position": true,
10 "max-line-length": [true, 180],
11 "member-access": false,
12 "member-ordering": [true,
13 "public-before-private",
14 "static-before-instance",
15 "variables-before-functions"
16 ],
17 "no-arg": true,
18 "no-bitwise": true,
19 "no-console": [true,
20 "debug",
21 "info",
22 "time",
23 "timeEnd",
24 "trace"
25 ],
26 "no-construct": true,
27 "no-debugger": true,
28 "no-duplicate-variable": true,
29 "no-empty": false,
30 "no-eval": true,
31 "no-inferrable-types": true,
32 "no-shadowed-variable": false,
33 "no-string-literal": false,
34 "no-switch-case-fall-through": true,
35 "no-trailing-whitespace": [true, "ignore-template-strings"],
36 "no-unused-expression": true,
37 "no-use-before-declare": false,
38 "no-var-keyword": false,
39 "object-literal-sort-keys": false,
40 "no-conditional-assignment": true,
41 "one-line": [true,
42 "check-open-brace",
43 "check-whitespace"
44 ],
45 "quotemark": [true, "single"],
46 "radix": false,
47 "semicolon": true,
48 "triple-equals": [true, "allow-null-check"],
49 "variable-name": [true,
50 "check-format",
51 "allow-leading-underscore"
52 ],
53 "whitespace": [true,
54 "check-branch",
55 "check-decl",
56 "check-operator",
57 "check-separator",
58 "check-type"
59 ]
60 }
61}
\No newline at end of file