-
Notifications
You must be signed in to change notification settings - Fork 15
/
tslint.json
26 lines (26 loc) · 907 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-eslint-rules", "tslint-sonarts"],
"rules": {
"no-empty": false,
"no-console": false,
"semicolon": [true, "never"],
"object-literal-sort-keys": false,
"ordered-imports": false,
"no-var-requires": false,
"no-implicit-dependencies": false,
"no-ignored-return": false,
"no-dead-store": {"severity": "warning"},
"object-curly-spacing": [true, "always"],
"max-line-length": [true, {"limit": 120, "ignore-pattern": "^import |^export {(.*?)}"}],
"trailing-comma": [true, {"multiline": "always"}],
"max-file-line-count": [true, 600],
"no-big-function": [true, 200],
"ter-indent": [true, 2],
"no-commented-code": false,
"no-redundant-boolean": true,
"typedef": [true, "call-signature", "arrow-call-signature", "parameter", "property-declaration"]
},
"linterOptions": {
"exclude": []
}
}