forked from microsoft/vscode-java-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
38 lines (38 loc) · 870 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
32
33
34
35
36
37
38
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"linterOptions": {
"exclude": [
"test/**/*.ts"
]
},
"jsRules": {},
"rules": {
"object-literal-sort-keys": false,
"indent": [
true,
"spaces"
],
"no-string-literal": false,
"no-namespace": false,
"max-line-length": [
false,
120
],
"typedef": [
true,
"call-signature",
"arrow-call-signature",
"parameter",
"arrow-parameter",
"property-declaration",
"variable-declaration",
"member-variable-declaration"
],
"quotemark": [true, "single", "avoid-escape"],
"variable-name": false
},
"rulesDirectory": []
}