-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
35 lines (35 loc) · 1019 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
{
"extends": ["tslint:recommended", "tslint-plugin-prettier"],
"rules": {
"prettier": true,
"ordered-imports": false,
"no-unused-expression": [true, "allow-tagged-template"],
"only-arrow-functions": false,
"member-access": [true, "no-public"],
"member-ordering": [false],
"arrow-parens": [true, "ban-single-arg-parens"],
"no-console": false,
"object-literal-sort-keys": false,
"interface-name": false,
"interface-over-type-literal": false,
"semicolon": [true, "always", "strict-bound-class-methods"],
"callable-types": true,
"object-literal-key-quotes": [true, "as-needed"],
"variable-name": false,
"max-line-length": [
true,
{
"limit": 120,
"ignore-pattern": "\\S"
}
],
"radix": false,
"max-classes-per-file": false,
"no-non-null-assertion": false,
"no-reference": false,
"trailing-comma": true,
"no-async-without-await": true,
"no-any": false,
"no-floating-promises": true
}
}