1 |
54479
|
myrto.kouk
|
{
|
2 |
|
|
"rulesDirectory": [
|
3 |
|
|
"node_modules/codelyzer"
|
4 |
|
|
],
|
5 |
|
|
"rules": {
|
6 |
|
|
"arrow-return-shorthand": true,
|
7 |
|
|
"callable-types": true,
|
8 |
|
|
"class-name": true,
|
9 |
|
|
"comment-format": [
|
10 |
|
|
true,
|
11 |
|
|
"check-space"
|
12 |
|
|
],
|
13 |
|
|
"curly": true,
|
14 |
|
|
"deprecation": {
|
15 |
|
|
"severity": "warn"
|
16 |
|
|
},
|
17 |
|
|
"eofline": true,
|
18 |
|
|
"forin": true,
|
19 |
|
|
"import-blacklist": [
|
20 |
|
|
true,
|
21 |
|
|
"rxjs/Rx"
|
22 |
|
|
],
|
23 |
|
|
"import-spacing": true,
|
24 |
|
|
"indent": [
|
25 |
|
|
true,
|
26 |
|
|
"spaces"
|
27 |
|
|
],
|
28 |
|
|
"interface-over-type-literal": true,
|
29 |
|
|
"label-position": true,
|
30 |
|
|
"max-line-length": [
|
31 |
|
|
true,
|
32 |
|
|
140
|
33 |
|
|
],
|
34 |
|
|
"member-access": false,
|
35 |
|
|
"member-ordering": [
|
36 |
|
|
true,
|
37 |
|
|
{
|
38 |
|
|
"order": [
|
39 |
|
|
"static-field",
|
40 |
|
|
"instance-field",
|
41 |
|
|
"static-method",
|
42 |
|
|
"instance-method"
|
43 |
|
|
]
|
44 |
|
|
}
|
45 |
|
|
],
|
46 |
|
|
"no-arg": true,
|
47 |
|
|
"no-bitwise": true,
|
48 |
|
|
"no-console": [
|
49 |
|
|
true,
|
50 |
|
|
"debug",
|
51 |
|
|
"info",
|
52 |
|
|
"time",
|
53 |
|
|
"timeEnd",
|
54 |
|
|
"trace"
|
55 |
|
|
],
|
56 |
|
|
"no-construct": true,
|
57 |
|
|
"no-debugger": true,
|
58 |
|
|
"no-duplicate-super": true,
|
59 |
|
|
"no-empty": false,
|
60 |
|
|
"no-empty-interface": true,
|
61 |
|
|
"no-eval": true,
|
62 |
|
|
"no-inferrable-types": [
|
63 |
|
|
true,
|
64 |
|
|
"ignore-params"
|
65 |
|
|
],
|
66 |
|
|
"no-misused-new": true,
|
67 |
|
|
"no-non-null-assertion": true,
|
68 |
|
|
"no-shadowed-variable": true,
|
69 |
|
|
"no-string-literal": false,
|
70 |
|
|
"no-string-throw": true,
|
71 |
|
|
"no-switch-case-fall-through": true,
|
72 |
|
|
"no-trailing-whitespace": true,
|
73 |
|
|
"no-unnecessary-initializer": true,
|
74 |
|
|
"no-unused-expression": true,
|
75 |
|
|
"no-var-keyword": true,
|
76 |
|
|
"object-literal-sort-keys": false,
|
77 |
|
|
"one-line": [
|
78 |
|
|
true,
|
79 |
|
|
"check-open-brace",
|
80 |
|
|
"check-catch",
|
81 |
|
|
"check-else",
|
82 |
|
|
"check-whitespace"
|
83 |
|
|
],
|
84 |
|
|
"prefer-const": true,
|
85 |
|
|
"quotemark": [
|
86 |
|
|
true,
|
87 |
|
|
"single"
|
88 |
|
|
],
|
89 |
|
|
"radix": true,
|
90 |
|
|
"semicolon": [
|
91 |
|
|
true,
|
92 |
|
|
"always"
|
93 |
|
|
],
|
94 |
|
|
"triple-equals": [
|
95 |
|
|
true,
|
96 |
|
|
"allow-null-check"
|
97 |
|
|
],
|
98 |
|
|
"typedef-whitespace": [
|
99 |
|
|
true,
|
100 |
|
|
{
|
101 |
|
|
"call-signature": "nospace",
|
102 |
|
|
"index-signature": "nospace",
|
103 |
|
|
"parameter": "nospace",
|
104 |
|
|
"property-declaration": "nospace",
|
105 |
|
|
"variable-declaration": "nospace"
|
106 |
|
|
}
|
107 |
|
|
],
|
108 |
|
|
"unified-signatures": true,
|
109 |
|
|
"variable-name": false,
|
110 |
|
|
"whitespace": [
|
111 |
|
|
true,
|
112 |
|
|
"check-branch",
|
113 |
|
|
"check-decl",
|
114 |
|
|
"check-operator",
|
115 |
|
|
"check-separator",
|
116 |
|
|
"check-type"
|
117 |
|
|
],
|
118 |
|
|
"no-output-on-prefix": true,
|
119 |
61424
|
stefania.m
|
"no-inputs-metadata-property": true,
|
120 |
|
|
"no-outputs-metadata-property": true,
|
121 |
|
|
"no-host-metadata-property": true,
|
122 |
54479
|
myrto.kouk
|
"no-input-rename": true,
|
123 |
|
|
"no-output-rename": true,
|
124 |
61424
|
stefania.m
|
"use-lifecycle-interface": true,
|
125 |
54479
|
myrto.kouk
|
"use-pipe-transform-interface": true,
|
126 |
|
|
"component-class-suffix": true,
|
127 |
|
|
"directive-class-suffix": true
|
128 |
|
|
}
|
129 |
|
|
}
|