-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
38 lines (38 loc) · 1.04 KB
/
tslint.json
File metadata and controls
38 lines (38 loc) · 1.04 KB
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
{
"rulesDirectory": [
"node_modules/codelyzer"
],
"rules":{
"directive-selector": [false, "attribute", ["tr", "usr", "ut"], "camelCase"],
"component-selector": [true, "element", ["tr", "usr", "ut"], "kebab-case"],
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"no-attribute-parameter-decorator": true,
"no-input-rename": true,
"no-output-rename": true,
"no-forward-ref": "log",
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"pipe-naming": [false, "camelCase", "tr"],
"component-class-suffix": true,
"directive-class-suffix": true,
"import-destructuring-spacing": true,
"templates-use-public": true,
"no-access-missing-member": false,
"invoke-injectable": true,
"no-console": [false, "log"],
"jsdoc-format": true,
"quotemark": [
true,
"single"
],
"semicolon": [
"always"
],
"triple-equals": [
true,
"allow-null-check"
]
}
}