`nx affected:lint --fix` 和 `nx format:write` 之间的区别
Difference between `nx affected:lint --fix` and `nx format:write`
nx affected:lint --fix
和nx format:write
有什么区别?
不同的文章似乎确实提到应该使用 nx format:write
命令格式化代码,但它似乎并不完全依赖于 ESLint 规则。
格式化后,我一直遇到 ESLint 错误。
我是不是漏掉了什么?
谢谢
所以 nx format:write
使用位于项目根目录中的更漂亮的配置进行代码格式化。
nx affected:lint --fix
而不是修复 linting 问题。
nx affected:lint --fix
和nx format:write
有什么区别?
不同的文章似乎确实提到应该使用 nx format:write
命令格式化代码,但它似乎并不完全依赖于 ESLint 规则。
格式化后,我一直遇到 ESLint 错误。
我是不是漏掉了什么?
谢谢
所以 nx format:write
使用位于项目根目录中的更漂亮的配置进行代码格式化。
nx affected:lint --fix
而不是修复 linting 问题。