-
Notifications
You must be signed in to change notification settings - Fork 21
/
tslint.json
41 lines (41 loc) · 966 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"extends": [
"tslint-microsoft-contrib"
],
"rules": {
"mocha-no-side-effect-code": false,
"missing-jsdoc": false,
"newline-per-chained-call": ["error", { "ignoreChainWithDepth": 2 }],
"no-relative-imports": false,
"import-name": false,
"export-name": false,
"cyclomatic-complexity": false,
"promise-function-async": false,
"no-void-expression": false,
"newline-before-return": false,
"no-backbone-get-set-outside-model": false,
"no-single-line-block-comment": false,
"insecure-random": false,
"no-multiline-string": false,
"interface-name": false,
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": "never"
}
],
"typedef": [
true,
"parameter",
"arrow-parameter",
"property-declaration",
"member-variable-declaration"
],
"quotemark": [
true,
"double",
"avoid-escape"
]
}
}