-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
28 lines (28 loc) · 813 Bytes
/
tslint.json
File metadata and controls
28 lines (28 loc) · 813 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
26
27
28
{
"extends": "tslint-config-airbnb",
"rules": {
"await-promise": true,
"class-name": true,
"eofline": true,
"max-line-length": [true, 120],
"no-console": true,
"no-duplicate-imports": true,
"no-irregular-whitespace": true,
"no-parameter-reassignment": true,
"no-return-await": true,
"no-string-literal": true,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-unnecessary-type-assertion": true,
"only-arrow-functions": true,
"prefer-const": true,
"prefer-object-spread": true,
"strict-type-predicates": true,
"switch-default": true,
"ter-indent": [true, 4],
"triple-equals": true
},
"env": {
"jest": true
}
}