-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathtslint.json
More file actions
20 lines (20 loc) · 736 Bytes
/
tslint.json
File metadata and controls
20 lines (20 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"extends": "tslint:recommended",
"rules": {
"quotemark": [true, "single"],
"trailing-comma": [true, { "multiline": "never", "singline": "never" }],
"arrow-parens": [true, "ban-single-arg-parens"],
"member-access": [true, "no-public"],
"object-literal-sort-keys": false,
"no-empty": false,
"prefer-const": { "severity": "warning" },
"member-ordering": [false],
"curly": [true, "ignore-same-line"],
"interface-name": [true, "never-prefix"],
"max-classes-per-file": [false],
"radix": { "severity": "warning" },
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"no-console": false,
"no-floating-promises": true
}
}