这是有一些文件没格式化 prettier
参考官方文档:https://prettier.io/docs/en/cli.html#—check
错误相关涉及的文件,已经提示出来了
# "lint:prettier": "prettier --check \"**/*\" --end-of-line auto",
Checking formatting...
isTsProject false /Volumes/data/code/xxx/jsExample
[warn] src/components/HeaderSearch/index.jsx
[warn] src/utils/utils.js
[warn] Code style issues found in the above file(s). Forgot to run Prettier?
此时应该检查对应文件的格式,如果 vscode 配置生效,应该提示哪处格式错误
也可以使用格式化命令自动修复
"lint:prettier:fix": "prettier --write \"src\"",