generated from taichi/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 12
/
tslint.json
70 lines (70 loc) · 1.61 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
{
"defaultSeverity": "error",
"extends": [
"tslint-microsoft-contrib",
"tslint-config-prettier"
],
"rules": {
"non-literal-fs-path": false,
"interface-name": [
true,
"never-prefix"
],
"await-promise": false,
"function-name": false,
"no-function-constructor-with-string-args": false,
"function-constructor": true,
"no-reserved-keywords": false,
"variable-name": true,
"no-increment-decrement": false,
"increment-decrement": [
true,
"allow-post"
],
"no-unnecessary-bind": false,
"unnecessary-bind": true,
"completed-docs": false,
"binary-expression-operand-order": false,
"strict-boolean-expressions": false,
"no-backbone-get-set-outside-model": false,
"mocha-no-side-effect-code": false,
"missing-jsdoc": false,
"no-relative-imports": false,
"export-name": false,
"no-void-expression": false,
"typedef": [
true,
"parameter",
"arrow-parameter",
"property-declaration",
"member-variable-declaration"
],
"semicolon": [
true,
"always"
],
"newline-before-return": false,
"no-implicit-dependencies": false,
"no-default-export": false,
"no-submodule-imports": false,
"import-name": false,
"match-default-export-name": false,
"quotemark": [
true,
"double",
"avoid-escape",
"avoid-template"
],
"newline-per-chained-call": false,
"no-use-before-declare": false,
"prettier": [
true,
{
"trailingComma": "none"
}
]
},
"rulesDirectory": [
"tslint-plugin-prettier"
]
}