forked from balena-io-modules/rendition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
49 lines (49 loc) · 1.27 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
44
45
46
47
48
49
{
"extends": "tslint:recommended",
"rules": {
"indent": [ true, "tabs", 2 ],
"jsdoc-format": true,
"whitespace": [
false,
"check-type"
],
"object-literal-sort-keys": false,
"only-arrow-functions": [false],
"quotemark": [true, "single", "avoid-escape", "jsx-double"],
"max-classes-per-file": [false],
"max-line-length": [180],
"member-access": false,
"member-ordering": [false],
"no-consecutive-blank-lines": false,
"no-shadowed-variable": false,
"no-var-requires": true,
"arrow-parens": false,
"no-angle-bracket-type-assertion": false,
"no-console": [false],
"no-empty-interface": false,
"no-string-literal": false,
"object-literal-key-quotes": [true, "as-needed"],
"interface-name": [false],
"interface-over-type-literal": false,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
],
"semicolon": [true, "always", "ignore-bound-class-methods"],
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
]
}
}