1 | {
|
2 | "extends": ["tslint:recommended"],
|
3 | "rulesDirectory": ["node_modules/codelyzer"],
|
4 | "rules": {
|
5 | "component-class-suffix": true,
|
6 | "directive-class-suffix": true,
|
7 | "interface-name": false,
|
8 | "invoke-injectable": true,
|
9 | "max-line-length": [true, 100],
|
10 | "no-access-missing-member": false,
|
11 | "no-attribute-parameter-decorator": true,
|
12 | "no-console": [true, "time", "timeEnd", "trace"],
|
13 | "no-forward-ref": true,
|
14 | "no-input-rename": true,
|
15 | "no-output-rename": true,
|
16 | "no-string-literal": false,
|
17 | "object-literal-sort-keys": false,
|
18 | "ordered-imports": false,
|
19 | "pipe-naming": [true, "camelCase", "my"],
|
20 | "quotemark": [true, "single", "avoid-escape"],
|
21 | "trailing-comma": [false, {"multiline": "always", "singleline": "never"}],
|
22 | "use-host-property-decorator": true,
|
23 | "use-input-property-decorator": true,
|
24 | "use-output-property-decorator": true,
|
25 | "use-pipe-transform-interface": true,
|
26 | "variable-name": [true, "allow-leading-underscore", "ban-keywords", "check-format"]
|
27 | }
|
28 | }
|