-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathtslint.json
39 lines (39 loc) · 986 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
{
"extends": "tslint:recommended",
"jsRules": {
"quotemark": [false, "single", "avoid-escape", "avoid-template"],
"ordered-imports": false,
"member-access": false,
"object-literal-sort-keys": false,
"trailing-comma": false,
"curly": false,
"prefer-const": false,
"max-line-length": [false],
"no-consecutive-blank-lines": false,
"eofline": false,
"no-trailing-whitespace": [
false
],
"no-console": false,
"variable-name": [
false
],
"space-before-function-paren": false
},
"rules": {
"prefer-const": false,
"quotemark": [false, "single", "avoid-escape", "avoid-template"],
"ordered-imports": false,
"member-access": false,
"object-literal-sort-keys": false,
"trailing-comma": false,
"curly": false,
"max-line-length": [false],
"eofline": false,
"no-trailing-whitespace": [
false
],
"no-console": false,
"space-before-function-paren": false
}
}