-
Notifications
You must be signed in to change notification settings - Fork 32
/
tslint.json
33 lines (33 loc) · 919 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
32
33
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"quotemark": [true, "single"],
"prefer-const": false,
"trailing-comma": false,
"semicolon": [true, "always"],
"ordered-imports": false,
"member-ordering": false,
"arrow-parens": false,
"no-angle-bracket-type-assertion": false,
"comment-format": false,
"max-line-length": false,
"only-arrow-functions": false,
"unified-signatures": false,
"interface-name": true,
"object-literal-sort-keys": false,
"max-classes-per-file": false,
"no-console": false,
"no-bitwise": false,
"no-shadowed-variable": false,
"no-var-requires": false,
"no-unused-expression": [true, "allow-new"],
"forin": false,
"no-empty": false,
"ban-types": false
},
"rulesDirectory": []
}