-
Notifications
You must be signed in to change notification settings - Fork 5
/
tslint.json
41 lines (41 loc) · 1.16 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
{
"extends": ["tslint:latest"],
"rules": {
"array-type": [true, "generic"],
"arrow-parens": ["error", "as-needed"],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-type"
],
"typedef-whitespace": [
true,
{
"variable-decrlaration": "space"
}
],
"curly": [true, "ignore-same-line"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"only-arrow-functions": false,
"import-spacing": false,
"semicolon": [true, "always", "ignore-interfaces"],
"no-angle-bracket-type-assertion": false,
"no-bitwise": false,
"no-trailing-whitespace": false,
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"max-classes-per-file": false,
"callable-types": false,
"no-this-assignment": false,
"no-empty-interface": false,
"ordered-imports": false,
"trailing-comma": false,
"prefer-conditional-expression": false,
"prefer-object-spread": false,
"max-line-length": [true, 256]
}
}