-
Notifications
You must be signed in to change notification settings - Fork 4
/
tslint.json
42 lines (39 loc) · 1.44 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
{
"rulesDirectory": [
"node_modules/tslint-eslint-rules/dist/rules",
"node_modules/codelyzer"
],
"rules": {
"curly": true,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-unused-expression": true,
"no-duplicate-super": true,
"no-duplicate-variable": true,
"no-eval": true,
"triple-equals": true,
"max-line-length": [true, 120],
"max-file-line-count": [true, 1000],
"no-consecutive-blank-lines": true,
"no-irregular-whitespace": true,
"no-trailing-whitespace": true,
"quotemark": [true, "single"],
"semicolon": true,
"whitespace": [true, "check-branch", "check-type", "check-decl", "check-seperator", "check-preblock", "check-operator", "check-typecast"],
"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": true,
"no-var-keyword": true,
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
"component-class-suffix": [true, "Component", "App", "Page", "Modal"],
"directive-class-suffix": [true, "Directive"],
"templates-use-public": true,
"invoke-injectable": true
}
}