-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
42 lines (42 loc) · 1003 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
34
35
36
37
38
39
40
41
42
{
"extends": "tslint:latest",
"rules": {
"no-any":true,
"indent" : [true, "tabs"],
"import-spacing":false,
"typedef-whitespace" : [false],
"whitespace" : [false],
"semicolon" : [true, "always"],
"quotemark" : [true, "double"],
"no-var-keyword" : true,
"no-trailing-whitespace":true,
"no-consecutive-blank-lines":false,
"object-literal-sort-keys": false,
"no-bitwise":true,
"max-line-length":[true, 100],
"eofline" : false,
"trailing-comma" : [ true, "never"],
"curly":true,
"array-type":false,
"forin":false,
"no-console":false,
"one-line":[true,
"check-catch",
"check-else",
"check-finally",
"check-open-brace"
],
"prefer-conditional-expression":false,
"arrow-parens":[true, "ban-single-arg-parens"],
"variable-name":[true,
"check-format",
"allow-leading-underscore",
"ban-keywords"
],
"member-access":false,
"only-arrow-functions": false,
"no-submodule-imports": [true],
"prefer-for-of":false
},
"rulesDirectory": []
}