UNPKG

2.33 kBJSONView Raw
1{
2 "rulesDirectory": [
3 "node_modules/codelyzer"
4 ],
5 "rules": {
6 "class-name": true,
7 "comment-format": [
8 true,
9 "check-space"
10 ],
11 "curly": true,
12 "eofline": true,
13 "forin": true,
14 "indent": [
15 true,
16 "spaces"
17 ],
18 "label-position": true,
19 "max-line-length": [
20 true,
21 140
22 ],
23 "member-access": false,
24 "member-ordering": [
25 true,
26 "static-before-instance",
27 "variables-before-functions"
28 ],
29 "no-arg": true,
30 "no-bitwise": true,
31 "no-console": [
32 true,
33 "debug",
34 "info",
35 "time",
36 "timeEnd",
37 "trace"
38 ],
39 "no-construct": true,
40 "no-debugger": true,
41 "no-duplicate-variable": true,
42 "no-empty": false,
43 "no-eval": true,
44 "no-inferrable-types": true,
45 "no-shadowed-variable": true,
46 "no-string-literal": false,
47 "no-switch-case-fall-through": true,
48 "no-trailing-whitespace": true,
49 "no-unused-expression": true,
50 "no-unused-variable": true,
51 "no-use-before-declare": true,
52 "no-var-keyword": true,
53 "object-literal-sort-keys": false,
54 "one-line": [
55 true,
56 "check-open-brace",
57 "check-catch",
58 "check-else",
59 "check-whitespace"
60 ],
61 "quotemark": [
62 true,
63 "single"
64 ],
65 "radix": true,
66 "semicolon": [
67 "always"
68 ],
69 "triple-equals": [
70 true,
71 "allow-null-check"
72 ],
73 "typedef-whitespace": [
74 true,
75 {
76 "call-signature": "nospace",
77 "index-signature": "nospace",
78 "parameter": "nospace",
79 "property-declaration": "nospace",
80 "variable-declaration": "nospace"
81 }
82 ],
83 "variable-name": false,
84 "whitespace": [
85 true,
86 "check-branch",
87 "check-decl",
88 "check-operator",
89 "check-separator",
90 "check-type"
91 ],
92 "directive-selector": [true, "attribute", "", "camelCase"],
93 "component-selector": [true, "element", "", "kebab-case"],
94 "use-input-property-decorator": true,
95 "use-output-property-decorator": true,
96 "use-host-property-decorator": true,
97 "no-input-rename": true,
98 "no-output-rename": true,
99 "use-life-cycle-interface": true,
100 "use-pipe-transform-interface": true,
101 "component-class-suffix": true,
102 "directive-class-suffix": true
103 }
104}