-
Notifications
You must be signed in to change notification settings - Fork 4
/
tslint.json
41 lines (41 loc) · 951 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
39
40
41
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-prettier"
],
"jsRules": {},
"rules": {
"adjacent-overload-signatures": false,
"arrow-parens": [
true,
"ban-single-arg-parens"
],
"max-line-length": false,
"no-empty-interface": false,
"interface-over-type-literal": false,
"no-empty": false,
"ordered-imports": false,
"prettier": [
true,
{
"semi": false,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "es5"
}
],
"quotemark": [
true,
"single",
"avoid-escape",
"avoid-template"
],
"trailing-comma": [
false
]
},
"rulesDirectory": [
"tslint-plugin-prettier"
]
}