forked from oribella/aurelia-sortable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
43 lines (43 loc) · 757 Bytes
/
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
{
"extends": "tslint:latest",
"rules": {
"quotemark": [
true,
"single"
],
"object-literal-sort-keys": false,
"ordered-imports": [
false
],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-separator",
"check-type"
],
"interface-name": [
true,
"never-prefix"
],
"no-shadowed-variable": false,
"no-string-literal": false,
"trailing-comma": [
false
],
"member-ordering": [
"fields-first"
],
"no-bitwise": false,
"no-conditional-assignment": false,
"max-classes-per-file": [
0
],
"max-line-length": [
0
],
"no-empty": false
}
}