-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
31 lines (31 loc) · 892 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
{
"rules": {
"max-line-length": {
"options": [120]
},
"new-parens": true,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": false,
"no-console": {
"options": ["debug", "info", "log", "time", "timeEnd", "trace"]
},
"quotemark": [true, "single", "jsx-double"],
"interface-over-type-literal": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"variable-name": [true, "allow-snake-case"],
"max-classes-per-file": [true, 5],
"member-ordering": [false],
"object-literal-key-quotes": [true, "never"],
"object-literal-sort-keys": false,
"interface-name": [true, "never-prefix"]
},
"jsRules": {
"max-line-length": {
"options": [80]
}
},
"semicolon": [true, "always", "ignore-bound-class-methods"],
"extends": ["tslint:recommended"]
}