mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-29 03:31:59 -07:00
31 lines
1.1 KiB
JSON
31 lines
1.1 KiB
JSON
{
|
|
"rules": {
|
|
"curly": true,
|
|
"ext-variable-name": [
|
|
true,
|
|
["class", "pascal"],
|
|
["function", "camel"]
|
|
],
|
|
"file-header": [true, ".*"],
|
|
"indent": [true, "spaces", 4],
|
|
"new-parens": true,
|
|
"no-consecutive-blank-lines": true,
|
|
"no-construct": true,
|
|
"no-duplicate-variable": true,
|
|
"no-unused-expression-chai": true,
|
|
"no-unused-variable": true,
|
|
"no-var-keyword": true,
|
|
"one-line": [true, "check-catch", "check-finally", "check-else", "check-open-brace", "check-whitespace"],
|
|
"promise-must-complete": true,
|
|
"semicolon": true,
|
|
"triple-equals": true,
|
|
"type-literal-delimiter": true,
|
|
"typedef": [true, "variable-declaration", "call-signature"],
|
|
"whitespace": [true, "check-branch", "check-operator", "check-separator", "check-preblock", "check-type"]
|
|
},
|
|
"rulesDirectory": [
|
|
"node_modules/tslint-microsoft-contrib",
|
|
"node_modules/tslint-no-unused-expression-chai/rules",
|
|
"node_modules/vrsource-tslint-rules/rules"
|
|
]
|
|
}
|