forked from koblas/sops-decoder-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
72 lines (70 loc) · 1.69 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"extends": [
"tslint-microsoft-contrib",
"tslint-eslint-rules"
],
"rules": {
"max-line-length": [true, 160],
"quotemark": [false],
"no-floating-promises": [true],
"align": [true, "parameters", "statements"],
"no-redundant-jsdoc": [false],
"switch-final-break": [false],
"no-implicit-dependencies": [false],
"no-submodule-imports": [false],
"no-return-await": [false],
"brace-style": [
true,
"1tbs",
{
"allowSingleLine": true
}
],
"array-bracket-spacing": [
true,
"never"
], // 18.10
"object-curly-spacing": [
true,
"always"
], // 18.11
"space-in-parens": [true, "never"],
"array-bracket-spacing": [
true,
"never"
], // 18.10
"variable-name": [
true,
"check-format" // 22.2
],
"typedef": [false],
"missing-jsdoc": [false],
"no-backbone-get-set-outside-model": [false],
"strict-boolean-expressions": [false],
"no-unsafe-any": [false],
"no-suspicious-comment": [false],
"no-relative-imports": [false],
"ordered-imports": [false],
"interface-name": [false],
"no-empty-interface": [false],
"export-name": [false],
"no-default-export": [false],
"no-any": [false],
"prefer-type-cast": [false],
"member-access": [false],
"no-reserved-keywords": [false],
"completed-docs": [false],
"await-promise": [true, "Bluebird"],
"switch-default": [false],
"no-string-based-set-timeout": [false],
"no-unused-expression": [false],
"chai-vague-errors": [false],
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": "never"
}
]
}
}