forked from legastero/stanza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
26 lines (26 loc) · 820 Bytes
/
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
{
"extends": ["tslint:recommended"],
"linterOptions": {
"exclude": ["build", "lib"]
},
"rules": {
"array-type": [true, "array-simple"],
"quotemark": [true, "single", "jsx-double", "avoid-escape"],
"trailing-comma": [true, "never"],
"no-consecutive-blank-lines": [true, 2],
"max-classes-per-file": [false, 1],
"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"],
"object-literal-key-quotes": [true, "as-needed"]
}
}