-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
28 lines (28 loc) · 812 Bytes
/
tslint.json
File metadata and controls
28 lines (28 loc) · 812 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
{
"extends": "tslint:recommended",
"rules": {
"class-name": false,
"export-name": false,
"forin": false,
"interface-name": false,
"label-position": false,
"member-access": true,
"object-literal-sort-keys": false,
"no-arg": false,
"no-console": false,
"no-construct": false,
"no-duplicate-variable": true,
"no-eval": false,
"no-internal-module": true,
"no-shadowed-variable": true,
"no-switch-case-fall-through": true,
"no-unused-expression": true,
"quotemark":[true, "single"],
"semicolon": true,
"trailing-comma": false,
"typedef": false,
"typedef-whitespace": false,
"variable-name": false,
"whitespace": false
}
}