chore(lint): update linter to follow angular lint file

This commit is contained in:
Dmitry Nehaychik 2017-10-20 17:31:36 +03:00
parent 899d874cdd
commit 3429ed0a8d
17 changed files with 53 additions and 46 deletions

View file

@ -22,7 +22,8 @@
"forin": true,
"import-blacklist": [
true,
"rxjs"
"rxjs",
"rxjs/Rx"
],
"import-spacing": true,
"indent": [
@ -33,7 +34,7 @@
"label-position": true,
"max-line-length": [
true,
120
140
],
"member-access": false,
"no-arg": true,
@ -51,6 +52,10 @@
"no-empty": false,
"no-empty-interface": true,
"no-eval": true,
"no-inferrable-types": [
true,
"ignore-params"
],
"no-misused-new": true,
"no-non-null-assertion": true,
"no-shadowed-variable": true,
@ -77,6 +82,7 @@
],
"radix": true,
"semicolon": [
true,
"always"
],
"triple-equals": [
@ -119,6 +125,7 @@
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"use-host-property-decorator": true,
"no-input-rename": true,
"no-output-rename": true,
"use-life-cycle-interface": true,
"use-pipe-transform-interface": true,
@ -128,4 +135,4 @@
"templates-use-public": true,
"invoke-injectable": true
}
}
}