-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
36 lines (36 loc) · 940 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
{
"extends": "tslint-config-airbnb",
"rulesDirectory": [
"./node_modules/codelyzer"
],
"rules": {
"ter-indent": [true, 4],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-rest-spread",
"check-type",
"check-typecast",
"check-type-operator",
"check-preblock"
],
"no-trailing-whitespace": true,
"prefer-template": true,
"no-invalid-template-strings": true,
"only-arrow-functions": [
true,
"allow-named-functions"
],
"no-consecutive-blank-lines": true,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]
},
"globals": [
"it",
"expect",
"describe"
]
}