-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
49 lines (49 loc) · 1.39 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-microsoft-contrib", "tslint-config-prettier"],
"rules": {
"quotemark": [true, "single"],
"mocha-no-side-effect-code": false,
"missing-jsdoc": false,
"no-relative-imports": false,
"export-name": false,
"promise-function-async": false,
"no-void-expression": false,
"no-redundant-jsdoc": false,
"no-any": false,
"no-default-export": false,
"no-submodule-imports": false,
"no-floating-promises": false,
"no-duplicate-imports": false,
"no-console": false,
"prefer-type-cast": false,
"newline-before-return": false,
"trailing-comma": true,
"match-default-export-name": false,
"non-literal-require": false,
"no-unsafe-any": false,
"strict-boolean-expressions": false,
"no-http-string": false,
"radix": false,
"no-single-line-block-comment": false,
"no-reserved-keywords": false,
"no-require-imports": false,
"no-implicit-dependencies": [true, ["@", "@config", "@modules", "@util"]],
"function-name": false,
"non-literal-fs-path": false,
"no-unnecessary-local-variable": false,
"no-function-expression": false,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore"
],
"typedef": [
true,
"parameter",
"arrow-parameter",
"property-declaration",
"member-variable-declaration"
]
}
}