-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
28 lines (28 loc) · 847 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
{
"rules": {
"typedef": [
true,
"call-signature",
"arrow-call-signature",
"arrow-parameter",
"parameter",
"variable-declaration",
"property-declaration",
"member-variable-declaration"
],
"max-classes-per-file": [true, 1],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"only-arrow-functions": true,
"quotemark": true,
"interface-name": true,
"class-name": true,
"no-unnecessary-initializer": true,
"no-duplicate-imports": true,
"no-consecutive-blank-lines": [true, 2],
"no-empty-interface": true,
"no-any": true,
"no-eval": true,
"no-console": true,
"no-var-requires": true
}
}