forked from gristlabs/mocha-webdriver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
26 lines (26 loc) · 851 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
{
"defaultSeverity": "warning",
"extends": [
"tslint:recommended"
],
"jsRules": {
"max-classes-per-file": false,
"no-consecutive-blank-lines": false,
"object-literal-sort-keys": false,
"one-variable-per-declaration": false,
"only-arrow-functions": false,
"quotemark": false,
"trailing-comma": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"]
},
"rules": {
"max-classes-per-file": false,
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"quotemark": false,
"trailing-comma": [true, {"multiline": "ignore", "singleline": "never"}],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"no-floating-promises": true
},
"rulesDirectory": []
}