-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
45 lines (45 loc) · 1.3 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
{
"defaultSeverity": "error",
"extends": [
"tslint:all"
],
"rules": {
"arrow-return-shorthand": [true],
"comment-format": false,
"completed-docs": false,
"no-console": false,
"cyclomatic-complexity": [true, 30],
"forin": false,
"interface-name": false,
"linebreak-style": false,
"match-default-export-name": false,
"max-line-length": false,
"member-access": [true, "check-accessor", "check-parameter-property"],
"newline-per-chained-call": false,
"no-any": false,
"no-default-export": false,
"no-default-import": false,
"no-dynamic-delete": false,
"no-implicit-dependencies": false,
"no-inferrable-types": true,
"no-magic-numbers": false,
"no-object-literal-type-assertion": false,
"no-parameter-reassignment": false,
"no-unbound-method": false,
"no-unsafe-any": false,
"no-unused-expression": false,
"no-use-before-declare": false,
"object-literal-sort-keys": [true, "ignore-case"],
"quotemark": [true, "single"],
"restrict-plus-operands": false,
"strict-boolean-expressions": false,
"strict-type-predicates": false,
"switch-default": false,
"trailing-comma": [true, {
"multiline": "never",
"singleline": "never"
}],
"typedef": false,
"variable-name": false
}
}