-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtslint.json
More file actions
36 lines (36 loc) · 786 Bytes
/
tslint.json
File metadata and controls
36 lines (36 loc) · 786 Bytes
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
{
"extends": [
"tslint:latest",
"tslint-config-prettier"
],
"rules": {
"no-var-keyword" : true,
"no-consecutive-blank-lines":false,
"no-implicit-dependencies":false,
"object-literal-sort-keys": false,
"no-bitwise":true,
"max-line-length":[true, 100],
"eofline" : false,
"curly":true,
"array-type":false,
"forin":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": []
}