-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
44 lines (40 loc) · 1.02 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
{
"extends": "tslint:recommended",
"rules": {
/*
* Any rules specified here will override those from the base config we are extending.
*/
"quotemark": [ true, "single" ],
"max-line-length": [ true, 200 ],
"trailing-comma": [
false
],
"ordered-imports": [
false
],
"arrow-parens": false,
"no-trailing-whitespace": false,
"eofline": false,
"object-literal-sort-keys": false,
"max-classes-per-file": [ false ],
"member-ordering": [ false ],
"no-consecutive-blank-lines": [ true, 2 ],
"comment-format": [ false ],
"whitespace": [ false ],
"align": [ false ],
"one-variable-per-declaration": [ false ],
"no-string-literal": false,
/*
* Rule overrides to try and remove
*/
"object-literal-key-quotes": [ false ],
"no-var-keyword": false,
"only-arrow-functions": [ false ],
"prefer-for-of": false,
"object-literal-shorthand": false,
"no-reference": false,
"jsdoc-format": false
},
"jsRules": {
}
}