-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
31 lines (31 loc) · 966 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
{
"enable": true,
"extends": [
"tslint:recommended"
],
"rules": {
"indent": [true, "tabs", 4],
"object-literal-sort-keys": false,
"object-literal-shorthand": false,
"array-type": [true, "array"],
"max-line-length": [false],
"interface-name": [false],
"variable-name": [
true,
"ban-keywords",
"check-format", "allow-leading-underscore", "allow-trailing-underscore"
],
"member-ordering": [false],
"curly": [true, "ignore-same-line"],
"triple-equals": [true, "allow-undefined-check", "allow-null-check"],
"arrow-parens": false,
"no-bitwise": false,
"quotemark": [true, "double", "avoid-escape"],
"no-console": [false],
"space-before-function-paren": [true, {
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}]
}
}