-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
26 lines (26 loc) · 781 Bytes
/
tslint.json
File metadata and controls
26 lines (26 loc) · 781 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"linebreak-style": [true, "LF"],
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"ordered-imports": false,
"object-literal-sort-keys": false,
"member-access": false,
"typedef-whitespace": [
true,
{
"call-signature": "onespace",
"index-signature": "onespace",
"parameter": "onespace",
"property-declaration": "onespace",
"variable-declaration": "onespace"
}
],
"max-line-length": [true, {"limit": 120, "ignore-pattern": "`(.+)`"}]
},
"rulesDirectory": []
}