-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
25 lines (25 loc) · 766 Bytes
/
tslint.json
File metadata and controls
25 lines (25 loc) · 766 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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"jsRules": {},
"rules": {
"arrow-parens": false,
"await-promise": [true],
"interface-name": false,
"max-classes-per-file": false,
"member-ordering": false,
"no-console": false,
"no-return-await": true,
"no-shadowed-variable": false,
"no-unused-variable": true,
"no-var-requires": false,
"object-literal-sort-keys": false,
"ordered-imports": true,
"prefer-const": false,
"quotemark": [true, "single"],
"radix": false,
"trailing-comma": false,
"typedef": [true, "call-signature", "parameter", "property-declaration"]
},
"rulesDirectory": []
}