当使用 git commit -m ‘XXX’ 将暂存区中的变化提交到仓库区的时候出现以下错误信息
husky > pre-commit (node v16.14.2)
↓ Stashing changes... [skipped]
→ No partially staged files found...
❯ Running linters...
❯ Running tasks for src/**/*.{js,vue}
✖ eslint --fix
git add
✖ eslint --fix found some errors. Please fix them and try committing again.
出现当前错误的原因是因为当前项目中开启了 eslint 校验,可以在commit的时候添加 –no-verify 跳过校验。
git commit --no-verify -m "XXX"