-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
55 lines (55 loc) · 1.3 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
{
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"rules": {
"import-blacklist": [
true,
"rxjs/Rx"
],
"interface-name": false,
"member-access": false,
"member-ordering": [
true,
{
"order": [
"static-field",
"instance-field",
"static-method",
"instance-method"
]
}
],
"newline-before-return": true,
"no-bitwise": false,
"no-boolean-literal-compare": true,
"no-console": [
true,
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-conditional-assignment": false,
"no-inferrable-types": [
true,
"ignore-params"
],
"no-magic-numbers": true,
"no-namespace": false,
"no-non-null-assertion": true,
"no-switch-case-fall-through": true,
"no-unused-expression": true,
"no-unused-variable": true,
"no-use-before-declare": true,
"object-literal-shorthand": true,
"object-literal-sort-keys": false,
"prefer-object-spread": true,
"prefer-template": true,
"quotemark": [
true,
"single",
"jsx-double"
],
"type-literal-delimiter": true
}
}