forked from nsacyber/WALKOFF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tslint.json
27 lines (27 loc) · 834 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
27
{
"extends": "tslint:recommended",
"rules": {
"max-line-length": {
"options": [120]
},
"indent": [true, "tabs"],
"no-trailing-whitespace": false,
"no-console": [true, "log"],
"quotemark": [true, "single", "avoid-template", "avoid-escape"],
"comment-format": false,
"space-before-function-paren": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"only-arrow-functions": false,
"member-access": false,
"arrow-parens": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-snake-case"],
"align": [true, "parameters", "statements", "argument", "members", "elements"],
"no-unused-variable": true,
"no-require-imports": true,
"use-isnan": true,
"typeof-compare": true,
"switch-default": true,
"no-invalid-this": true
}
}