-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
60 lines (60 loc) · 1.54 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
58
59
60
{
"extends": "tslint:recommended",
"defaultSeverity": "warning",
"rules": {
"no-import-side-effect": true,
"curly": true,
"max-line-length": false,
"indent": [true, "spaces"],
"space-before-function-paren": [true, "never"],
"quotemark": [true, "single"],
"no-consecutive-blank-lines": [true, 2],
"ordered-imports": true,
"member-access": false,
"object-literal-sort-keys": false,
"interface-name": false,
"member-ordering": [true, {
"order": [
"static-field",
"instance-field",
"static-method",
"constructor",
"instance-method"
]
}],
"arrow-parens": false,
"only-arrow-functions": false,
"no-console": false,
"array-type": false,
"no-empty-interface": false,
"no-trailing-whitespace": false,
"comment-format": false,
"no-empty": false,
"ban-types": false,
"unified-signatures": false,
"no-angle-bracket-type-assertion": false,
"callable-types": false,
"whitespace": [
true,
"check-branch",
"check-decl",
"check-module",
"check-operator",
"check-separator",
"check-type"
],
"no-require-imports": true,
"no-irregular-whitespace": true,
"trailing-comma": [true, {"multiline": {
"arrays": "always",
"exports": "always",
"functions": "never",
"imports": "always",
"objects": "always",
"typeLiterals": "always"
}}],
"no-access-missing-member": false,
"semicolon": [true, "always"],
"import-spacing": true
}
}