Skip to content

Commit 7edf006

Browse files
committed
fix: improve formatting in tslint.json for consistency
1 parent 6334bf5 commit 7edf006

File tree

1 file changed

+21
-13
lines changed

1 file changed

+21
-13
lines changed

tslint.json

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,39 @@
22
"defaultSeverity": "error",
33
"rules": {
44
"class-name": true,
5-
"comment-format": [true,
5+
"comment-format": [
6+
true,
67
"check-space"
78
],
8-
"indent": [true,
9+
"indent": [
10+
true,
911
"spaces"
1012
],
11-
"one-line": [true,
13+
"one-line": [
14+
true,
1215
"check-open-brace"
1316
],
14-
"quotemark": [true,
17+
"quotemark": [
18+
true,
1519
"double"
1620
],
1721
"semicolon": true,
18-
"whitespace": [true,
22+
"whitespace": [
23+
true,
1924
"check-branch",
2025
"check-operator",
2126
"check-separator",
2227
"check-type"
2328
],
24-
"typedef-whitespace": [true, {
25-
"call-signature": "nospace",
26-
"index-signature": "nospace",
27-
"parameter": "nospace",
28-
"property-declaration": "nospace",
29-
"variable-declaration": "nospace"
30-
}]
29+
"typedef-whitespace": [
30+
true,
31+
{
32+
"call-signature": "nospace",
33+
"index-signature": "nospace",
34+
"parameter": "nospace",
35+
"property-declaration": "nospace",
36+
"variable-declaration": "nospace"
37+
}
38+
]
3139
}
32-
}
40+
}

0 commit comments

Comments
 (0)