我正在使用angular cli作为我的angular2项目。我正在使用lint命令进行linting-and-formatting-code,如下所示
ng lint
我可以在命令提示符下看到几个错误,如下所示
src/app/quote/your-cart/your-cart.component.ts[118, 9]: missing whitespace
src/app/quote/your-cart/your-cart.component.ts[129, 8]: missing whitespace
src/app/quote/your-cart/your-cart.component.ts[130, 9]: missing whitespace
src/app/quote/your-cart/your-cart.component.ts[142, 21]: missing whitespace
由于它报告了大量错误,我想在某个文件上导出该错误。它可能是HTML,TXT,甚至JSON也没关系。
简而言之,我想将角度cli lint错误导出到某个文件。
请帮忙。
答案 0 :(得分:6)
ng lint
打印到stdout,执行:
ng lint > out.txt
适用于* nix和Windows
答案 1 :(得分:0)
ng lint | findstr" name.module.ts"
ng lint | grep" name.module.ts"在git bash中