forked from MisterGoodcat/good-injector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
21 lines (21 loc) · 995 Bytes
/
tslint.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"defaultSeverity": "error",
"extends": "tslint:recommended",
"jsRules": {},
"rules": {
"ban-types": [true, ["Object"], ["Boolean"], ["Number"], ["String"], ["Symbol"]],
"arrow-parens": [true, "ban-single-arg-parens"],
"max-classes-per-file": [false],
"max-line-length": [false],
"no-angle-bracket-type-assertion": [false],
"no-trailing-whitespace": [false],
"one-line": [true, "check-open-brace"],
"ordered-imports": [false],
"prefer-const": [false],
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
"triple-equals": [true, "allow-undefined-check"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"whitespace": [true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-rest-spread", "check-type", "check-type-operator", "check-preblock"]
},
"rulesDirectory": []
}