You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{
|
|
|
|
"extends": "tslint:recommended",
|
|
|
|
"rulesDirectory": [],
|
|
|
|
"rules": {
|
|
|
|
"max-line-length": {
|
|
|
|
"options": [120]
|
|
|
|
},
|
|
|
|
"new-parens": true,
|
|
|
|
"no-arg": true,
|
|
|
|
"no-bitwise": true,
|
|
|
|
"no-conditional-assignment": true,
|
|
|
|
"no-consecutive-blank-lines": false,
|
|
|
|
"cyclomatic-complexity": true,
|
|
|
|
"brace-style": "1tbs",
|
|
|
|
"semicolon": true,
|
|
|
|
"indent": [true, "spaces", 4],
|
|
|
|
"no-shadowed-variable": true,
|
|
|
|
"no-console": {
|
|
|
|
"severity": "warning",
|
|
|
|
"options": ["debug", "info", "log", "time", "timeEnd", "trace"]
|
|
|
|
},
|
|
|
|
"no-namespace": false,
|
|
|
|
"no-internal-module": false,
|
|
|
|
"max-classes-per-file": false,
|
|
|
|
"no-var-requires": false,
|
|
|
|
"jsdoc-format": [true, "check-multiline-start"],
|
|
|
|
"completed-docs": [true, "classes", "enums", "methods", {
|
|
|
|
"properties": {
|
|
|
|
"privacies": "all",
|
|
|
|
"locations": "instance"
|
|
|
|
}
|
|
|
|
}]
|
|
|
|
},
|
|
|
|
"jsRules": {
|
|
|
|
"max-line-length": {
|
|
|
|
"options": [120]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|