-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
34 lines (34 loc) · 849 Bytes
/
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
{
"defaultSeverity": "error",
"extends": "tslint:all",
"rules": {
"interface-name": false,
"newline-per-chained-call": false,
"match-default-export-name": false,
"member-ordering": false,
"no-console": false,
"no-inferrable-types": false,
"no-non-null-assertion": false,
"no-unsafe-any": false,
"object-literal-sort-keys": false,
"one-line": [
true,
"check-catch",
"check-finally",
"check-open-brace",
"check-whitespace"
],
"only-arrow-functions": [true, "allow-named-functions"],
"prefer-function-over-method": false,
"semicolon": [true, "never"],
"trailing-comma": false,
"typedef": [
true,
"call-signature",
"parameter",
"property-declaration",
"member-variable-declaration",
"array-destructuring"
]
}
}