@gkalpak/cli-utils
Version:
A private collection of utilities for developing cli tools.
25 lines (24 loc) • 742 B
JSON
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"arrow-parens": [true, "ban-single-arg-parens"],
"curly": [true, "ignore-same-line"],
"interface-name": [true, "always-prefix"],
"max-classes-per-file": [true, 4],
"max-line-length": [true, 120],
"no-consecutive-blank-lines": [true, 2],
"no-console": [false],
"no-duplicate-variable": [true, "check-parameters"],
"no-focused-test": true,
"no-skipped-test": true,
"quotemark": [true, "single"],
"variable-name": [true, "allow-leading-underscore", "allow-trailing-underscore", "ban-keywords", "check-format"]
},
"rulesDirectory": [
"node_modules/tslint-jasmine-noSkipOrFocus/"
]
}