-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
tslint.json
34 lines (34 loc) · 1.01 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
{
"enable": true,
"extends": [
"tslint:recommended"
],
"linterOptions": {
"exclude": [
"node_modules/**",
"**/*.d.ts"
]
},
"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,
"max-classes-per-file": false,
"quotemark": [true, "double", "avoid-escape"],
"no-console": [true, "log", "error"],
"no-trailing-whitespace": [true, "ignore-jsdoc"]
}
}