-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtslint.json
More file actions
29 lines (28 loc) · 716 Bytes
/
Copy pathtslint.json
File metadata and controls
29 lines (28 loc) · 716 Bytes
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
{
"extends": "tslint:latest",
"rules": {
"quotemark": [true, "single"],
"no-console": false,
"arrow-parens": false,
"interface-name": false,
"ordered-imports": false,
"no-empty": false,
"curly": false,
"max-line-length": 125,
"object-literal-sort-keys": false,
"object-literal-shorthand": false,
"no-empty-interface": false,
"member-ordering": false,
"no-trailing-whitespace": false,
"no-consecutive-blank-lines": false,
"interface-over-type-literal": false,
"prefer-const": false,
"no-var-requires": false,
"switch-default": false,
"variable-name": false,
"trailing-comma": false
},
"jsRules": {
},
"rulesDirectory": []
}