forked from microsoft/powerbi-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
41 lines (41 loc) · 985 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
{
"extends": "tslint:recommended",
"rules": {
"max-line-length": false,
"max-classes-per-file": false,
"array-type": false,
"member-access": false,
"no-empty-interface": false,
"indent": [
true,
"spaces",
4
],
"object-literal-shorthand": [
true,
{
"property": "never"
}
],
"one-line": [
"check-whitespace",
"check-open-brace"
],
"interface-over-type-literal": false,
"quotemark": [
"single",
"avoid-escape"
],
"trailing-comma": false,
"whitespace": [
"check-branch",
"check-decl",
"check-operator",
"check-module",
"check-seperator",
"check-type"
],
"object-literal-sort-keys": false,
"no-var-requires": false
}
}