这是有一些文件没格式化 prettier

    参考官方文档:https://prettier.io/docs/en/cli.html#—check

    错误相关涉及的文件,已经提示出来了

    1. # "lint:prettier": "prettier --check \"**/*\" --end-of-line auto",
    2. Checking formatting...
    3. isTsProject false /Volumes/data/code/xxx/jsExample
    4. [warn] src/components/HeaderSearch/index.jsx
    5. [warn] src/utils/utils.js
    6. [warn] Code style issues found in the above file(s). Forgot to run Prettier?

    此时应该检查对应文件的格式,如果 vscode 配置生效,应该提示哪处格式错误

    也可以使用格式化命令自动修复

    1. "lint:prettier:fix": "prettier --write \"src\"",