forked from Nightwatch/nightwatch
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtslint.json
More file actions
28 lines (28 loc) · 713 Bytes
/
tslint.json
File metadata and controls
28 lines (28 loc) · 713 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-sonarts",
"tslint-config-standard",
"tslint:recommended"
],
"rules": {
"no-unused-variable": false,
"space-before-function-paren": false,
"await-promise": true,
"file-name-casing": [true, "kebab-case"],
"semicolon": [true, "never"],
"linebreak-style": false,
"trailing-comma": false,
"arrow-parens": false,
"ordered-imports": false,
"interface-name": false,
"no-console": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"typedef": false,
"quotemark": false,
"no-redundant-jsdoc": true,
"no-duplicate-string": false,
"variable-name": false,
"cognitive-complexity": false
}
}