-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
33 lines (33 loc) · 1.08 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
{
"extends": "tslint:recommended",
"rules": {
"array-type": [true, "generic"],
"arrow-parens": false,
"ban-types": false,
"forin": false,
"function-constructor": false,
"indent": false,
"interface-name": false,
"label-position": false,
"max-classes-per-file": false,
"max-line-length": false,
"member-access": false,
"member-ordering": false,
"no-bitwise": false,
"no-conditional-assignment": false,
"no-console": false,
"no-debugger": false,
"no-empty": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"no-unused-expression": false,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"ordered-imports": false,
"prefer-const": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"trailing-comma": [true, { "singleline": "never", "multiline": "never" }],
"triple-equals": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-trailing-underscore", "allow-pascal-case"]
}
}