-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtslint.json
26 lines (26 loc) · 918 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", "tslint-no-unused-expression-chai"],
"rules": {
"max-line-length": {
"options": [180]
},
"quotemark": false,
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
"new-parens": true,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": false,
"no-var-requires": false,
"variable-name": [true, "allow-leading-underscore"],
"semicolon": [true, "always", "ignore-interfaces"],
"curly": [true, "ignore-same-line"],
"no-console": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"no-trailing-whitespace": [true, "ignore-blank-lines"],
"only-arrow-functions": [true, "allow-named-functions"],
"object-literal-sort-keys": false,
"ordered-imports": false,
"no-empty": [true, "allow-empty-catch", "allow-empty-functions"]
}
}