forked from brionmario/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
57 lines (57 loc) · 1.82 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
48
49
50
51
52
53
54
55
56
57
{
"extends": ["tslint:recommended", "tslint-xo/space"],
"rules": {
"array-type": false,
"await-promise": false,
"block-spacing": [true, "always"],
"brace-style": [true, "1tbs", { "allowSingleLine": true }],
"comment-format": false,
"curly": false,
"default-case": false,
"early-exit": false,
"interface-name": false,
"interface-over-type-literal": false,
"max-classes-per-file": false,
"max-line-length": false,
"member-access": false,
"newline-before-return": false,
"no-collapsible-if": false,
"no-conditional-assignment": false,
"no-dynamic-delete": false,
"no-else-after-return": false,
"no-empty": false,
"no-empty-interface": false,
"no-import-side-effect": false,
"no-namespace": false,
"no-non-null-assertion": false,
"no-parameter-reassignment": false,
"no-require-imports": false,
"no-shadowed-variable": false,
"no-static-this": false,
"no-unnecessary-else": false,
"no-unnecessary-type-annotation": false,
"no-unnecessary-type-assertion": false,
"no-unused-expression": false,
"no-use-before-declare": false,
"no-var-before-return": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"ordered-imports": {
"severity": "error",
"options": { "grouped-imports": true }
},
"prefer-const": false,
"prefer-template": false,
"promise-function-async": false,
"promise-must-complete": false,
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"restrict-plus-operands": false,
"semicolon": [true, "never"],
"switch-default": false,
"ter-indent": [true, 2, { "MemberExpression": 1 }],
"type-literal-delimiter": false,
"underscore-consistent-invocation": false,
"variable-name": false
}
}