-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
28 lines (28 loc) · 902 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"no-var-requires": false,
"member-ordering": false,
"typedef-whitespace": false,
"interface-name": false,
"quotemark": [true, "single", "backtick"],
"only-arrow-functions": [false, "allow-declarations", "allow-named-functions"],
"no-consecutive-blank-lines": [true, 3],
"ordered-imports": false,
"variable-name": false,
"member-access": [true, "no-public"],
"one-line": [true, "check-open-brace", "check-whitespace"],
"max-line-length": false,
"trailing-comma": false,
"eofline": false,
"interface-over-type-literal": false,
"object-literal-sort-keys": false,
"prefer-const": false,
"array-type": false
},
"rulesDirectory": []
}