-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
65 lines (65 loc) · 2.25 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"extends": "tslint:recommended",
"rules": {
"arrow-return-shorthand": true,
"class-name": true,
"component-class-suffix": true,
"contextual-lifecycle": true,
"deprecation": {
"severity": "warning"
},
"directive-class-suffix": true,
"import-blacklist": [true, "rxjs/Rx"],
"member-ordering": [
true,
{
"order": ["static-field", "instance-field", "static-method", "instance-method"]
}
],
"no-angle-bracket-type-assertion": false,
"max-classes-per-file": [false, 2],
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"interface-name": [false, "never-prefix"],
"forin": false,
"no-namespace": false,
"only-arrow-functions": false,
"one-variable-per-declaration": false,
"no-arg": true,
"no-bitwise": true,
"no-duplicate-super": true,
"no-empty-interface": true,
"no-eval": true,
"no-misused-new": true,
"no-string-throw": true,
"no-unnecessary-initializer": true,
"no-shadowed-variable": true,
"no-unused-expression": true,
"no-unused-vars": true,
"no-var-keyword": false,
"no-console": false,
"no-inferrable-types": [true, "ignore-params"],
"no-non-null-assertion": true,
"no-redundant-jsdoc": true,
"no-switch-case-fall-through": true,
"no-conflicting-lifecycle": true,
"no-host-metadata-property": true,
"no-input-rename": true,
"no-inputs-metadata-property": true,
"no-output-native": true,
"no-output-on-prefix": true,
"no-output-rename": true,
"no-outputs-metadata-property": true,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"ordered-imports": false,
"prefer-const": false,
"prefer-template": true,
"radix": true,
"triple-equals": [true, "allow-null-check"],
"template-banana-in-box": true,
"template-no-negated-async": true,
"use-lifecycle-interface": true,
"use-pipe-transform-interface": true,
"unified-signatures": true
}
}