forked from NagRock/ts-mockito
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
25 lines (25 loc) · 747 Bytes
/
tslint.json
File metadata and controls
25 lines (25 loc) · 747 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": {
"array-type": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"interface-name": false,
"max-line-length": false,
"member-ordering": [true, {"order": "fields-first"}],
"no-console": [true, "log"],
"no-empty": false,
"no-empty-interface": false,
"no-bitwise": false,
"object-literal-sort-keys": false,
"prefer-template": true,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"ban-types": false,
"no-string-literal": false,
"max-classes-per-file": false
},
"rulesDirectory": []
}