-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
35 lines (35 loc) · 831 Bytes
/
tslint.json
File metadata and controls
35 lines (35 loc) · 831 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
25
26
27
28
29
30
31
32
33
34
35
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"rules": {
"await-promise": true,
"no-bitwise": true,
"no-console": true,
"no-conditional-assignment": true,
"no-debugger": true,
"no-duplicate-super": true,
"no-empty": false,
"no-empty-interface": false,
"no-unused-expression": true,
"no-any": {
"severity": "warn"
},
"no-parameter-reassignment": true,
"no-var-keyword": true,
"use-isnan": true,
"comment-format": true,
"variable-name": [
true,
"check-format",
"ban-keywords",
"allow-leading-underscore",
"allow-pascal-case"
],
"jsx-no-lambda": false,
"array-type": [true, "array-simple"],
"jsx-boolean-value": false,
"prefer-for-of": false
},
"rulesDirectory": []
}