-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
34 lines (34 loc) · 1.2 KB
/
tslint.json
File metadata and controls
34 lines (34 loc) · 1.2 KB
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
{
"extends": "tslint:all",
"rulesDirectory": [],
"rules": {
"arrow-parens": [false],
"array-type": [true, "array"],
"adjacent-overload-signatures": true,
"max-line-length": [true, 79],
"typedef-whitespace": [false],
"trailing-comma": [false],
"variable-name": [false],
"member-ordering": [false],
"no-inferrable-types": [false],
"typedef": [true, "member-variable-declaration", "call-signature", "parameter", "property-declaration"],
"no-magic-numbers": [false],
"newline-before-return": [false],
"comment-format": [false],
"binary-expression-operand-order": [false],
"prefer-conditional-expression": [false],
"no-console": [false],
"prefer-for-of": false,
"cyclomatic-complexity": [false],
"only-arrow-functions": [false],
"space-within-parens": false,
"max-classes-per-file": [false],
"no-null-keyword": false,
"prefer-switch": false,
"no-bitwise": false,
"no-parameter-properties": false,
"no-consecutive-blank-lines": false,
"interface-name": [false],
"max-file-line-count": [false]
}
}