forked from Worie/btt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
28 lines (28 loc) · 856 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
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"rules": {
"interface-name": false,
"quotemark": [true, "single"],
"ordered-imports": false,
"object-literal-sort-keys": false,
"trailing-comma": true,
"arrow-parens": [true, "ban-single-arg-parens"],
"no-bitwise": false,
"only-arrow-functions": false,
"no-console": false,
"ban-types": false,
"max-line-length": [true, { "limit": 120, "ignore-pattern": "\\* |//" }],
"max-classes-per-file": false,
"no-var-requires": false,
"array-type": [true, "array"],
"semicolon": [true, "always"],
"return-undefined": true,
"promise-function-async": true,
"typedef": true,
"await-promise": true,
"curly": true,
"no-duplicate-variable": true,
"no-for-in-array": true,
"no-invalid-template-strings": true
}
}