-
Notifications
You must be signed in to change notification settings - Fork 50
/
tslint.json
47 lines (47 loc) · 1.22 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
{
"extends": [
"tslint:recommended",
"tslint-config-prettier",
"tslint-config-airbnb"
],
"rules": {
"align": false,
"array-type": [true, "array-simple"],
"import-name": false,
"no-boolean-literal-compare": false,
"no-empty-interface": false,
"no-inferrable-types": true,
"no-this-assignment": [true, { "allow-destructuring": true }],
"object-literal-sort-keys": false,
"object-shorthand-properties-first": false,
"prefer-array-literal": false,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"ter-arrow-parens": [true, "always"],
"ter-func-call-spacing": false,
"ter-indent": false,
"trailing-comma": [
true,
{
"multiline": {
"arrays": "always",
"objects": "always",
"functions": "never",
"imports": "always",
"exports": "always",
"typeLiterals": "always"
},
"singleline": "never",
"esSpecCompliant": true
}
],
"typedef": [true, "call-signature", "arrow-call-signature"],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
]
},
"jsRules": {}
}