We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98d7474 commit 5ef2b47Copy full SHA for 5ef2b47
1 file changed
tslint.json
@@ -4,20 +4,31 @@
4
"comment-format": [true,
5
"check-space"
6
],
7
- "indent": true,
+ "indent": [true,
8
+ "spaces"
9
+ ],
10
"one-line": [true,
11
"check-open-brace"
12
13
"no-unreachable": true,
14
"no-use-before-declare": true,
15
"no-var-keyword": true,
- "quotemark": true,
16
+ "quotemark": [true,
17
+ "double"
18
19
"semicolon": true,
20
"whitespace": [true,
21
"check-branch",
22
"check-operator",
23
"check-separator",
24
"check-type"
- ]
25
26
+ "typedef-whitespace": [true, {
27
+ "call-signature": "nospace",
28
+ "index-signature": "nospace",
29
+ "parameter": "nospace",
30
+ "property-declaration": "nospace",
31
+ "variable-declaration": "nospace"
32
+ }]
33
}
34
0 commit comments