nx 格式:检查else
后在 html 文件中不需要冒号:
<div *ngIf="isValid; else errors">
但是当我在同一个项目中运行更漂亮时,它需要一个冒号else
<div *ngIf="isValid; else: errors">
- 为什么这不同?
我认为这nx format:check
只是在我的根目录中执行更漂亮? - 我缺少一些配置选项吗?
更多信息:
在包含角度模板的子目录中,我可以验证问题:
$ nx format:check --files login.component.html
$ prettier -c login.component.html
Checking formatting...
login.component.html
Code style issues found in the above file(s). Forgot to run Prettier?
请注意,nx 不会报告问题,但 prettier 会报告:以下是版本:
$ nx --version
8.5.0
$ prettier --version
1.18.2