-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
73 lines (73 loc) · 2.17 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
73
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-standard",
"tslint-react",
"tslint-config-prettier"
],
"jsRules": {},
"rules": {
"await-promise": true,
"chai-vague-errors": false,
"deprecation": true,
"export-name": false,
"import-name": false,
"interface-name": [true, "never-prefix"],
"interface-over-type-literal": false,
"jsdoc-format": [true, "check-multiline-start"],
"match-default-export-name": true,
"max-line-length": {
"options": [120]
},
"max-file-line-count": [true, 350],
"member-access": [true, "no-public"],
"member-ordering": false,
"mocha-no-side-effect-code": false,
"no-any": true,
"no-async-without-await": true,
"no-backbone-get-set-outside-model": false,
"no-bitwise": false,
"no-boolean-literal-compare": true,
"no-console": false,
"no-dynamic-delete": true,
"no-floating-promises": true,
"no-for-in-array": true,
"no-implicit-dependencies": false,
"no-import-side-effect": [true, { "ignore-module": "\\.css$" }],
"no-inferred-empty-object-type": true,
"no-mergeable-namespace": true,
"no-non-null-assertion": true,
"no-object-literal-type-assertion": true,
"no-redundant-jsdoc": true,
"no-relative-imports": false,
"no-single-line-block-comment": false,
"no-submodule-imports": false,
"no-tautology-expression": true,
"no-unnecessary-callback-wrapper": true,
"no-unnecessary-class": true,
"no-unnecessary-qualifier": true,
"no-unnecessary-type-assertion": true,
"no-void-expression": true,
"object-literal-sort-keys": false,
"ordered-imports": false,
"prefer-array-literal": false,
"prefer-type-cast": false,
"promise-function-async": true,
"restrict-plus-operands": true,
"return-undefined": true,
"static-this": true,
"strict-boolean-expressions": true,
"unnecessary-bind": true,
"unnecessary-constructor": true,
"use-simple-attributes": false,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
},
"rulesDirectory": []
}