-
Notifications
You must be signed in to change notification settings - Fork 6
/
tslint.json
42 lines (42 loc) · 1.26 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
{
"extends": "tslint:recommended",
"linterOptions": {
"exclude": ["build", "lib"]
},
"rules": {
"quotemark": [true, "single", "jsx-double"],
"trailing-comma": [true, "never"],
"no-consecutive-blank-lines": [true, 2],
"max-classes-per-file": [false],
"interface-name": [false],
"arrow-parens": [true, "ban-single-arg-parens"],
"max-line-length": [false],
"no-console": [false],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
],
"semicolon": [true, "always"]
},
"jsRules": {
"quotemark": [true, "single", "jsx-double"],
"trailing-comma": [true, "never"],
"no-consecutive-blank-lines": [true, 2],
"max-classes-per-file": [false],
"interface-name": [false],
"arrow-parens": [true, "ban-single-arg-parens"],
"max-line-length": [false],
"no-console": [false],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
],
"semicolon": [true, "always"]
}
}