-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
43 lines (43 loc) · 1.2 KB
/
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
42
43
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"rules": {
"typedef": [
true,
"call-signature",
"parameter",
"property-declaration"
],
"new-parens": true,
"no-var-requires": false,
"no-arg": true,
"no-conditional-assignment": true,
"no-console": [
true,
"debug",
"info",
"log",
"time",
"timeEnd",
"trace"
],
"array-type": [true, "array"],
"ordered-imports": false,
"class-name": false,
"interface-name": false,
"no-namespace": false,
"no-default-export": true,
"no-unused-variable": true,
"object-literal-shorthand": false,
"object-literal-key-quotes": false,
"max-classes-per-file": [false],
"triple-equals": [true, "allow-null-check"],
"no-empty-interface": false,
"no-string-literal": false,
"jsdoc-format": true,
"member-ordering": false,
"forin": true,
"no-for-in-array": true,
"no-invalid-template-strings": true,
"object-literal-sort-keys": false
}
}