UNPKG

1.62 kBJSONView Raw
1{
2 "rules": {
3 "align": false,
4 "ban": [],
5 "class-name": true,
6 "comment-format": [ true, "check-space" ],
7 "curly": true,
8 "eofline": true,
9 "forin": false,
10 "indent": [ true, "tabs" ],
11 "interface-name": false,
12 "jsdoc-format": true,
13 "label-position": true,
14 "max-line-length": false,
15 "member-access": false,
16 "member-ordering": false,
17 "no-any": false,
18 "no-arg": true,
19 "no-bitwise": false,
20 "no-consecutive-blank-lines": true,
21 "no-console": false,
22 "no-construct": false,
23 "no-debugger": true,
24 "no-duplicate-variable": true,
25 "no-empty": false,
26 "no-eval": true,
27 "no-parameter-properties": true,
28 "no-shadowed-variable": false,
29 "no-string-literal": false,
30 "no-switch-case-fall-through": false,
31 "no-trailing-whitespace": true,
32 "no-unused-expression": false,
33 "no-use-before-declare": false,
34 "no-var-keyword": true,
35 "no-var-requires": false,
36 "object-literal-sort-keys": false,
37 "one-line": [ true, "check-open-brace", "check-whitespace" ],
38 "quotemark": [ true, "single" ],
39 "radix": true,
40 "semicolon": true,
41 "trailing-comma": [ true, {
42 "multiline": "never",
43 "singleline": "never"
44 } ],
45 "triple-equals": [ true, "allow-null-check" ],
46 "typedef": false,
47 "typedef-whitespace": [ true, {
48 "call-signature": "nospace",
49 "index-signature": "nospace",
50 "parameter": "nospace",
51 "property-declaration": "nospace",
52 "variable-declaration": "nospace"
53 } ],
54 "use-strict": false,
55 "variable-name": false,
56 "whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-type", "check-typecast" ]
57 }
58}