-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
51 lines (51 loc) · 1.14 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"defaultSeverity": "error",
"extends": ["tslint-config-airbnb"],
"jsRules": {
"no-unused-expression": true
},
"rules": {
"quotemark": [true, "single"],
"member-access": [false],
"ordered-imports": [false],
"max-line-length": [true, 150],
"arrow-parens": false,
"object-literal-sort-keys": false,
"no-empty": false,
"unified-signatures": false,
"no-submodule-imports": false,
"interface-name": true,
"no-object-literal-type-assertion": false,
"no-unused-expression": false,
"trailing-comma": false,
"semicolon": [true, "always", "ignore-interfaces"],
"no-string-literal": true,
"only-arrow-functions": false,
"typedef": [
true
],
"no-var-requires": true,
"align": [
true,
"parameters",
"statements"
],
"member-ordering": [
true,
{
"order": [
"public-instance-field",
"private-instance-field",
"public-instance-method",
"private-instance-method"
]
}
],
"variable-name": [
true,
"ban-keywords",
"check-format"
]
},
"rulesDirectory": []
}