UNPKG

1.46 kBJSONView Raw
1{
2 "rulesDirectory": [
3 "node_modules/codelyzer"
4 ],
5 "rules": {
6 "class-name": true,
7 "curly": true,
8 "forin": true,
9 "indent": [
10 true,
11 "spaces"
12 ],
13 "label-position": true,
14 "member-access": false,
15 "no-arg": true,
16 "no-bitwise": true,
17 "no-console": [
18 true,
19 "debug",
20 "info",
21 "time",
22 "timeEnd",
23 "trace"
24 ],
25 "no-construct": true,
26 "no-duplicate-variable": true,
27 "no-empty": false,
28 "no-eval": true,
29 "no-inferrable-types": false,
30 "no-shadowed-variable": true,
31 "no-string-literal": false,
32 "no-unused-expression": true,
33 "no-use-before-declare": true,
34 "object-literal-sort-keys": false,
35 "one-line": [
36 true,
37 "check-open-brace",
38 "check-catch",
39 "check-else",
40 "check-whitespace"
41 ],
42 "radix": true,
43 "semicolon": [
44 "always"
45 ],
46 "triple-equals": [
47 true,
48 "allow-null-check"
49 ],
50 "typedef-whitespace": [
51 true,
52 {
53 "call-signature": "nospace",
54 "index-signature": "nospace",
55 "parameter": "nospace",
56 "property-declaration": "nospace",
57 "variable-declaration": "nospace"
58 }
59 ],
60 "variable-name": false,
61 "use-input-property-decorator": true,
62 "use-output-property-decorator": true,
63 "use-host-property-decorator": false,
64 "use-life-cycle-interface": true,
65 "use-pipe-transform-interface": true
66 }
67}