forked from AlCalzone/ioBroker.philips-tv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
26 lines (26 loc) · 820 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
{
"enable": true,
"extends": [
"tslint:recommended"
],
"rules": {
"indent": [true, "tabs", 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,
"quotemark": [true, "double", "avoid-escape"],
"no-console": [true, "log", "error"]
}
}