forked from sjbarag/brs
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtslint.json
More file actions
24 lines (24 loc) · 750 Bytes
/
tslint.json
File metadata and controls
24 lines (24 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": ["tslint-config-prettier"],
"defaultSeverity": "error",
"jsRules": {},
"rules": {
"no-var-requires": true,
"prefer-for-of": true,
"promise-function-async": true,
"await-promise": [true, "warn"],
"ban-comma-operator": true,
"no-debugger": [true, "warn"],
"no-for-in-array": true,
"no-implicit-dependencies": true,
"no-switch-case-fall-through": true,
"restrict-plus-operands": true,
"triple-equals": [true, "allow-null-check"],
"use-isnan": true,
"array-type": [true, "array"],
"jsdoc-format": true,
"new-parens": true,
"no-angle-bracket-type-assertion": true
},
"rulesDirectory": []
}