Skip to content

Commit c234aed

Browse files
committed
tslint format
1 parent ba75a05 commit c234aed

File tree

1 file changed

+65
-50
lines changed

1 file changed

+65
-50
lines changed

tslint.json

+65-50
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,66 @@
11
{
2-
"rules": {
3-
"class-name": true,
4-
"comment-format": [true,
5-
"check-space"
6-
],
7-
"indent": [true,
8-
"spaces"
9-
],
10-
"linebreak-style": [true, "CRLF"],
11-
"one-line": [true,
12-
"check-open-brace",
13-
"check-whitespace"
14-
],
15-
"no-var-keyword": true,
16-
"quotemark": [true,
17-
"double",
18-
"avoid-escape"
19-
],
20-
"semicolon": [true, "ignore-bound-class-methods"],
21-
"whitespace": [true,
22-
"check-branch",
23-
"check-decl",
24-
"check-operator",
25-
"check-module",
26-
"check-separator",
27-
"check-type"
28-
],
29-
"typedef-whitespace": [true, {
30-
"call-signature": "nospace",
31-
"index-signature": "nospace",
32-
"parameter": "nospace",
33-
"property-declaration": "nospace",
34-
"variable-declaration": "nospace"
35-
}],
36-
"next-line": [true,
37-
"check-catch",
38-
"check-else"
39-
],
40-
"no-internal-module": true,
41-
"no-trailing-whitespace": true,
42-
"no-inferrable-types": true,
43-
"no-null-keyword": true,
44-
"boolean-trivia": true,
45-
"type-operator-spacing": true,
46-
"prefer-const": true,
47-
"no-increment-decrement": true,
48-
"object-literal-surrounding-space": true,
49-
"no-type-assertion-whitespace": true
50-
}
51-
}
2+
"rules": {
3+
"class-name": true,
4+
"comment-format": [
5+
true,
6+
"check-space"
7+
],
8+
"indent": [
9+
true,
10+
"spaces"
11+
],
12+
"linebreak-style": [
13+
true,
14+
"CRLF"
15+
],
16+
"one-line": [
17+
true,
18+
"check-open-brace",
19+
"check-whitespace"
20+
],
21+
"no-var-keyword": true,
22+
"quotemark": [
23+
true,
24+
"double",
25+
"avoid-escape"
26+
],
27+
"semicolon": [
28+
true,
29+
"ignore-bound-class-methods"
30+
],
31+
"whitespace": [
32+
true,
33+
"check-branch",
34+
"check-decl",
35+
"check-operator",
36+
"check-module",
37+
"check-separator",
38+
"check-type"
39+
],
40+
"typedef-whitespace": [
41+
true,
42+
{
43+
"call-signature": "nospace",
44+
"index-signature": "nospace",
45+
"parameter": "nospace",
46+
"property-declaration": "nospace",
47+
"variable-declaration": "nospace"
48+
}
49+
],
50+
"next-line": [
51+
true,
52+
"check-catch",
53+
"check-else"
54+
],
55+
"no-internal-module": true,
56+
"no-trailing-whitespace": true,
57+
"no-inferrable-types": [true],
58+
"no-null-keyword": true,
59+
"boolean-trivia": true,
60+
"type-operator-spacing": true,
61+
"prefer-const": true,
62+
"no-increment-decrement": true,
63+
"object-literal-surrounding-space": true,
64+
"no-type-assertion-whitespace": true
65+
}
66+
}

0 commit comments

Comments
 (0)