forked from Novage/wt-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
18 lines (18 loc) · 692 Bytes
/
tslint.json
File metadata and controls
18 lines (18 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"rules": {
"indent": [true, "spaces", 4],
"triple-equals": [true, "allow-undefined-check"],
"object-literal-sort-keys": false,
"ordered-imports": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"object-literal-shorthand": [true, "never"],
"interface-name": [true, "never-prefix"],
"max-line-length": [true, 150],
"no-empty": [true, "allow-empty-functions"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"no-implicit-dependencies": [true, ["chai", "ws", "ts-mockito"]],
"array-type": [true, "array-simple"]
},
"defaultSeverity": "error",
"extends": ["tslint:latest", "tslint-sonarts"]
}