-
Notifications
You must be signed in to change notification settings - Fork 3
/
tslint.json
87 lines (87 loc) · 1.86 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
{
"rules": {
"align": true,
"arrow-parens": true,
"arrow-return-shorthand": true,
"ban-comma-operator": true,
"curly": true,
"import-spacing": true,
"jsdoc-format": true,
"newline-before-return": true,
"new-parens": true,
"no-consecutive-blank-lines": true,
"no-construct": true,
"no-duplicate-super": true,
"no-duplicate-switch-case": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-empty-interface": true,
"no-eval": true,
"no-irregular-whitespace": true,
"no-non-null-assertion": true,
"no-require-imports": true,
"no-shadowed-variable": true,
"no-string-throw": true,
"no-trailing-whitespace": true,
"no-unnecessary-callback-wrapper": true,
"number-literal-format": true,
"object-literal-shorthand": true,
"only-arrow-functions": true,
"ordered-imports": true,
"prefer-conditional-expression": true,
"prefer-const": true,
"prefer-template": true,
"space-within-parens": true,
"switch-default": true,
"switch-final-break": true,
"triple-equals": true,
"array-type": [
true,
"array"
],
"comment-format": [
true,
"check-space",
"check-uppercase"
],
"interface-name": [
true,
"always-prefix"
],
"member-ordering": [
true,
{
"alphabetize": true,
"order": "fields-first"
}
],
"object-literal-key-quotes": [
false
],
"one-line": [
true,
"check-catch",
"check-finally",
"check-else"
],
"quotemark": [
true,
"double"
],
"semicolon": [
true,
"always"
],
"typedef": [
true,
"call-signature",
"property-declaration"
],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore"
]
}
}