-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
72 lines (70 loc) · 2.08 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
{
"defaultSeverity": "error",
"extends": [
"tslint:all"
],
"jsRules": {},
"rules": {
"max-line-length": {
"options": [
100
]
},
"indent": [
true,
"spaces",
4
],
"align": false,
"ban-ts-ignore": false,
"binary-expression-operand-order": false,
"completed-docs": false,
"cyclomatic-complexity": false,
"max-file-line-count": false,
"member-ordering": false,
"newline-per-chained-call": false,
"no-any": false,
"no-bitwise": false,
"no-console": false,
"no-import-side-effect": false,
"no-inferrable-types": false,
"no-magic-numbers": false,
"no-non-null-assertion": false,
"no-null-keyword": false,
"no-submodule-imports": false,
"no-unsafe-any": false,
"object-literal-sort-keys": false,
"prefer-function-over-method": false,
"promise-function-async": false,
"file-name-casing": [true, "snake-case"],
"invalid-void": true,
"member-access": true,
"new-parens": true,
"newline-before-return": true,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": true,
"no-invalid-template-strings": true,
"no-unnecessary-type-assertion": true,
"no-sparse-arrays": true,
"no-this-assignment": true,
"no-unbound-method": true,
"number-literal-format": true,
"object-literal-key-quotes": [true, "as-needed"],
"only-arrow-functions": true,
"prefer-conditional-expression": true,
"prefer-switch": true,
"restrict-plus-operands": true,
"typedef": true,
"variable-name": {
"options": [
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case",
"allow-snake-case"
]
},
"whitespace": true
},
"rulesDirectory": []
}