-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
47 lines (46 loc) · 1.22 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
/**
* This starter project recommended using Microsoft TSLint rules.
* Please see https://github.com/Microsoft/tslint-microsoft-contrib for more details.
*/
{
"extends": [
"tslint-microsoft-contrib",
"tslint-config-prettier",
"tslint:recommended",
"tslint-eslint-rules",
"prettier"
],
"rules": {
"mocha-no-side-effect-code": false,
"missing-jsdoc": false,
"no-relative-imports": false,
"export-name": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"promise-function-async": false,
"no-void-expression": false,
"no-redundant-jsdoc": true,
"prefer-type-cast": false,
"array-type": false,
"ter-indent": [true, 2],
"trailing-comma": [false],
"no-unsafe-any": false,
"strict-boolean-expressions": false,
"await-promise": false,
"no-backbone-get-set-outside-model": false,
"restrict-plus-operands": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
],
"typedef": [
true,
"parameter",
"property-declaration",
"member-variable-declaration"
]
}
}