-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
29 lines (29 loc) · 997 Bytes
/
tslint.json
File metadata and controls
29 lines (29 loc) · 997 Bytes
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
{
"extends": ["tslint:all", "tslint-config-prettier"],
"rules": {
"array-type": [true, "array"],
"comment-format": false,
"completed-docs": false,
"invalid-void": false,
"linebreak-style": false,
"max-line-length": [true, 140],
"member-ordering": false,
"newline-before-return": false,
"newline-per-chained-call": false,
"no-async-without-await": false,
"no-empty": false,
"no-for-in": false,
"no-implicit-dependencies": [true, "dev"],
"no-import-side-effect": false,
"no-magic-numbers": [true, -1, 0, 1, 2, 3],
"no-parameter-properties": false,
"no-parameter-reassignment": false,
"no-submodule-imports": false,
"no-unsafe-any": false,
"no-unused-variable": false,
"no-use-before-declare": false,
"prefer-function-over-method": false,
"strict-string-expressions": false,
"typedef": false
}
}