gulpfile.js: migrated form tslint to eslint.
parent
9aa94a33ce
commit
fa323d414f
File diff suppressed because it is too large
Load Diff
@ -1,39 +0,0 @@
|
|||||||
{
|
|
||||||
"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,
|
|
||||||
"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]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue