-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
52 lines (52 loc) · 1018 Bytes
/
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
{
"rules": {
"no-bitwise": true,
"class-name": true,
"eofline": true,
"no-trailing-whitespace": true,
"use-isnan": true,
"no-reference": true,
"trailing-comma": [
true,
{
"multiline": "never",
"singleline": "never"
}
],
"member-ordering": [
true,
{
"order": "fields-first"
}
],
"no-empty": true,
"no-duplicate-variable": true,
"no-inferrable-types": true,
"no-unnecessary-type-assertion": true,
"radix": true,
"jsdoc-format": true,
"new-parens": true,
"interface-name": [
true,
"always-prefix"
],
"no-angle-bracket-type-assertion": true,
"object-literal-key-quotes": [
true,
"as-needed"
],
"no-consecutive-blank-lines": [
true
],
"one-variable-per-declaration": [
true
],
"variable-name": [
true,
"ban-keywords",
"allow-pascal-case",
"check-format"
],
"no-var-keyword": true
}
}