我正在通过Angular-CLI运行tslint并遇到一个问题,它正在检测故障,但没有告诉我故障是什么。
这是我得到的唯一输出:
{{1}}
为什么会发生这种情况?我该如何解决?
答案 0 :(得分:2)
看起来这是Angular-CLI的错误。如果您手动运行命令:npm run lint
,您可以看到真正的错误。我在GitHub上submitted an issue。
更新:这已修复,但在发布新版本之前,将tslint.json
文件的底部更改为此将解决此问题。
"use-host-property-decorator": true,
"use-input-property-decorator": true,
"use-output-property-decorator": true,
"no-attribute-parameter-decorator": true,
"no-input-rename": true,
"no-output-rename": true
相关GitHub提交:https://github.com/angular/angular-cli/pull/848/files#diff-53fb140e7018814de9f2e231a3eb95a1R65