-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
37 lines (37 loc) · 1000 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
37
{
"defaultSeverity": "error",
"extends": ["tslint:recommended"],
"rules": {
"quotemark": [true, "single"],
"array-type": [true, "array"],
"arrow-parens": [true, "ban-single-arg-parens"],
"no-namespace": [true, "allow-declarations"],
"no-trailing-whitespace": false,
"no-bitwise": false,
"no-angle-bracket-type-assertion": true,
"curly": [true, "ignore-same-line"],
"variable-name": [
false,
"ban-keywords",
"check-format",
"allow-leading-underscore"
],
"eofline": true,
"interface-name": false,
"member-ordering": false,
"no-any": false,
"no-console": false,
"no-unused-expression": [true, "allow-fast-null-checks", "allow-new"],
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"prefer-const": true,
"radix": false,
"triple-equals": [true, "allow-null-check"]
},
"linterOptions": {
"exclude": [
"index.d.ts"
]
}
}