forked from y-kkamil/console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
83 lines (83 loc) · 1.93 KB
/
tslint.json
File metadata and controls
83 lines (83 loc) · 1.93 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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"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-use-before-declare": 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",
"@kyma-project/luigi-client",
"apollo-cache-inmemory",
"apollo-utilities",
"graphql-tag",
"subscriptions-transport-ws"
]
],
"interface-name": false
},
"rulesDirectory": [
"node_modules/codelyzer"
],
"extends": [
"tslint:latest",
"tslint-angular",
"tslint-config-prettier"
]
}