forked from iobroker-community-adapters/ioBroker.worx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
27 lines (27 loc) · 840 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
{
"enable": true,
"extends": [
"tslint:recommended"
],
"rules": {
"indent": [true, "spaces", 4],
"object-literal-sort-keys": false,
"object-literal-shorthand": false,
"array-type": [true, "array"],
"max-line-length": [false],
"interface-name": [false],
"variable-name": [
true,
"ban-keywords",
"check-format", "allow-leading-underscore", "allow-trailing-underscore"
],
"member-ordering": [false],
"curly": [true, "ignore-same-line"],
"triple-equals": [true, "allow-undefined-check", "allow-null-check"],
"arrow-parens": false,
"no-bitwise": false,
"max-classes-per-file": false,
"quotemark": [true, "single", "avoid-escape"],
"no-console": true
}
}