forked from y-kkamil/console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
90 lines (90 loc) · 2.08 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"rules": {
"quotemark": [
true,
"single",
"avoid-escape"
],
"angular-whitespace": [
true,
"check-interpolation",
"check-semicolon"
],
"template-banana-in-box": true,
"template-no-negated-async": true,
"directive-selector": [
true,
"attribute",
"",
"camelCase"
],
"component-selector": [
true,
"element",
"",
"kebab-case"
],
"no-inputs-metadata-property": true,
"no-outputs-metadata-property": true,
"no-host-metadata-property": false,
"use-component-view-encapsulation": true,
"no-attribute-decorator": true,
"no-output-native": true,
"no-input-rename": true,
"no-output-rename": true,
"no-output-on-prefix": true,
"no-forward-ref": true,
"no-unused-css": true,
"no-focused-tests": true,
"use-lifecycle-interface": true,
"contextual-lifecycle": true,
"template-use-track-by-function": false,
"use-pipe-transform-interface": true,
"component-class-suffix": true,
"directive-class-suffix": true,
"no-pipe-impure": true,
"template-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",
"brace/theme/tomorrow",
"shared",
"namespaces",
"app",
"fundamental-ngx"
],
"no-implicit-dependencies": [
true,
[
"shared",
"namespaces",
"app",
"@luigi-project/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",
"tslint-jasmine-rules"
]
}