-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
tslint.json
31 lines (31 loc) · 880 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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"one-variable-per-declaration": false,
"quotemark": [true, "double"],
"no-submodule-imports": false,
"promise-function-async": true,
"max-file-line-count": [true, 300],
"no-trailing-whitespace": true,
"newline-before-return": true,
"no-consecutive-blank-lines": true,
"no-console": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"interface-name": false,
"whitespace": [true, "check-branch", "check-operator", "check-typecast"],
"no-bitwise": false,
"no-var-requires": false,
"curly": [true, "ignore-same-line"],
"no-namespace": false,
"no-shadowed-variable": false
},
"rulesDirectory": [],
"linterOptions": {
"exclude": [
"**/*.json"
]
}
}