-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtslint.json
More file actions
27 lines (27 loc) · 803 Bytes
/
tslint.json
File metadata and controls
27 lines (27 loc) · 803 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
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"rules": {
"array-type": [true, "array"],
"await-promise": true,
"curly": [true, "ignore-same-line"],
"deprecation": true,
"interface-over-type-literal": false,
"max-classes-per-file": false,
"member-ordering": [true, "instance-sandwich"],
"no-boolean-literal-compare": true,
"no-floating-promises": true,
"no-for-in-array": true,
"no-unnecessary-qualifier": true,
"object-literal-sort-keys": false,
"ordered-imports": [false],
"prefer-readonly": true,
"restrict-plus-operands": true,
"strict-type-predicates": true,
"use-default-type-parameter": true,
"variable-name": [
true,
"allow-leading-underscore",
"allow-trailing-underscore"
]
}
}