-
Notifications
You must be signed in to change notification settings - Fork 3
/
tslint.json
36 lines (36 loc) · 896 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
34
35
36
{
"lintOptions": {
"typeCheck": true
},
"extends": "tslint:recommended",
"rules": {
"quotemark": [
true,
"single"
],
"newline-before-return": false,
"no-angle-bracket-type-assertion": false,
"eofline": false,
"object-literal-shorthand": true,
"object-literal-sort-keys": false,
"trailing-comma": [
false
],
"max-line-length": [
true,
200
],
"object-literal-key-quotes": [
false
],
"ordered-imports": false,
"prefer-const": false,
"triple-equals": false,
"no-empty": false,
"no-string-literal": false,
"prefer-for-of": false,
"arrow-parens": false,
"no-unused-expression": false,
"one-variable-per-declaration": false
}
}