-
Notifications
You must be signed in to change notification settings - Fork 5
/
tslint.json
33 lines (33 loc) · 905 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
27
28
29
30
31
32
33
{
"extends": ["tslint:latest"],
"rules": {
"arrow-return-shorthand": true,
"callable-types": true,
"class-name": true,
"comment-format": [true, "check-space"],
"curly": true,
"eofline": true,
"import-spacing": true,
"no-var-keyword": true,
"prefer-const": true,
"quotemark": [true, "single"],
"semicolon": ["always"],
"max-line-length": [true, 140],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-pascal-case",
"allow-leading-underscore"
],
"object-literal-sort-keys": false,
"object-literal-shorthand": false,
"no-string-literal": false,
"ordered-imports": [false],
"arrow-parens": [true, "ban-single-arg-parens"],
"no-console": [true, "log", "debug", "info", "warn"],
"max-file-line-count": [false],
"member-ordering": [false],
"trailing-comma": [false]
}
}