-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.base.json
More file actions
31 lines (31 loc) · 849 Bytes
/
tslint.base.json
File metadata and controls
31 lines (31 loc) · 849 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
27
28
29
30
31
{
"extends": [
"tslint:recommended",
"tslint-consistent-codestyle",
"tslint-config-prettier"
],
"rules": {
"interface-name": false,
"member-ordering": false,
"no-use-before-declare": false,
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"no-var-keyword": true,
"variable-name": [true, "allow-leading-underscore"],
"arrow-parens": [true, "ban-single-arg-parens"],
"member-access": [true, "check-accessor"],
"quotemark": [
true,
"double",
"avoid-escape",
"avoid-template"
],
"typedef": [
true,
"call-signature",
"parameter",
"property-declaration"
]
}
}