2

我正在通过 Angular-CLI 运行 tslint 并遇到一个问题,它正在检测故障但没有向我显示故障是什么。

这是我得到的唯一输出:

C:\extras\code\gitlab\project-name>ng lint

> Project-Name@0.4.0 lint C:\extras\code\gitlab\project-name
> tslint "src/**/*.ts"


Lint errors found in the listed files.

为什么会发生这种情况以及我该如何解决?

4

1 回答 1

2

看起来这是 Angular-CLI 的错误。如果您手动运行命令:npm run lint您可以看到真正的错误。我在 GitHub 上提交了一个问题。

更新:这已得到修复,但在发布新版本之前,将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

于 2016-05-20T17:16:03.430 回答