forked from y-kkamil/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
48 lines (48 loc) · 1.58 KB
/
tslint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"rules": {
"quotemark": [true, "single", "avoid-escape"],
"angular-whitespace": [true, "check-interpolation", "check-semicolon"],
"banana-in-box": true,
"templates-no-negated-async": true,
"directive-selector": [true, "attribute", "", "camelCase"],
"component-selector": [true, "element", "", "kebab-case"],
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": false,
"use-view-encapsulation": true,
"no-attribute-parameter-decorator": true,
"no-output-named-after-standard-event": true,
"no-input-rename": true,
"no-output-rename": true,
"no-output-on-prefix": true,
"no-forward-ref": true,
"no-unused-css": true,
"use-life-cycle-interface": true,
"contextual-life-cycle": true,
"trackBy-function": false,
"use-pipe-transform-interface": true,
"component-class-suffix": true,
"directive-class-suffix": true,
"pipe-impure": true,
"i18n": false,
"no-string-literal": false,
"no-console": false,
"ordered-imports": false,
"no-submodule-imports": [
true,
"rxjs",
"@angular/platform-browser",
"@angular/core/testing",
"@angular/common/http/testing",
"@angular/common/http",
"@angular/router/src/utils/collection",
"@angular/http/testing",
"@angular/router/testing",
"app"
],
"no-implicit-dependencies": [true, ["app"]],
"interface-name": false
},
"rulesDirectory": ["node_modules/codelyzer"],
"extends": ["tslint:latest", "tslint-angular", "tslint-config-prettier"]
}