forked from Iris0905/angular-onscreen-material-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.yml
59 lines (58 loc) · 1.11 KB
/
tslint.yml
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
extends:
- tslint:latest
- rxjs-tslint-rules
rules:
# tslint rules
array-type:
- true
- array
experimentalDecorators:
- true
quotemark:
- true
- single
interface-name:
- never-prefix
max-line-length:
- true
- 180
member-access:
- true
- no-public
member-ordering:
- true
- order:
- public-static-field
- public-static-method
- private-instance-field
- public-instance-field
- public-constructor
- public-instance-method
- private-instance-method
no-console: false
no-string-literal: false
no-submodule-imports: false
object-literal-key-quotes:
- consistent-as-needed
object-literal-sort-keys: false
trailing-comma: false
typedef-whitespace:
- true
- call-signature: nospace
index-signature: nospace
parameter: nospace
property-declaration: nospace
variable-declaration: nospace
variable-name:
- true
- check-format
- allow-leading-underscore
# rxjs-tslint-rules
rxjs-no-add:
severity: error
rxjs-no-operator:
severity: error
rxjs-no-patched:
severity: error
rxjs-no-wholesale:
severity: error