-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtslint.json
42 lines (42 loc) · 1.11 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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"arrow-parens": [false],
"one-variable-per-declaration": false,
"no-consecutive-blank-lines": [true],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-rest-spread",
"check-type",
"check-type-operator",
"check-preblock"
],
"member-access": false,
"member-ordering": [
true,
{
"order": ["static-field", "instance-field", "static-method", "instance-method"]
}
],
"no-string-literal": false,
"no-empty-interface": false,
"no-empty": [false],
"quotemark": [true, "single"],
"trailing-comma": [false],
"no-angle-bracket-type-assertion": [false],
"object-literal-sort-keys": [false],
"no-console": [true, "debug", "info", "time", "timeEnd", "trace"],
"max-line-length": [false],
"variable-name": false,
"no-unused-expression": true,
"no-floating-promises": true
},
"rulesDirectory": []
}