UNPKG

1.52 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-debugger": true,
27 "no-duplicate-variable": true,
28 "no-empty": false,
29 "no-eval": true,
30 "no-inferrable-types": false,
31 "no-shadowed-variable": true,
32 "no-string-literal": false,
33 "no-unused-expression": true,
34 "no-unused-variable": true,
35 "no-use-before-declare": true,
36 "object-literal-sort-keys": false,
37 "one-line": [
38 true,
39 "check-open-brace",
40 "check-catch",
41 "check-else",
42 "check-whitespace"
43 ],
44 "radix": true,
45 "semicolon": [
46 "always"
47 ],
48 "triple-equals": [
49 true,
50 "allow-null-check"
51 ],
52 "typedef-whitespace": [
53 true,
54 {
55 "call-signature": "nospace",
56 "index-signature": "nospace",
57 "parameter": "nospace",
58 "property-declaration": "nospace",
59 "variable-declaration": "nospace"
60 }
61 ],
62 "variable-name": false,
63 "use-input-property-decorator": true,
64 "use-output-property-decorator": true,
65 "use-host-property-decorator": false,
66 "use-life-cycle-interface": true,
67 "use-pipe-transform-interface": true
68 }
69}