eslint stylelint 报错处理汇总
问题 Error: All input files were ignored because of the ignore pattern. Either change your input, ignore pattern or use "--allow-empty-input" to allow no inputs
有时候提交代码的时候会有下面报错
Error: All input files were ignored because of the ignore pattern. Either change your input, ignore pattern or use "--allow-empty-input" to allow no inputs
详情如下:
> lint-staged
✔ Preparing lint-staged...
❯ Running tasks for staged files...
❯ package.json — 1 file
↓ *.{js,jsx,ts,tsx} — no files [SKIPPED]
↓ {!(package)*.json,*.code-snippets,.!(browserslist)*rc} — no files [SKIPPED]
↓ package.json — no files [SKIPPED]
↓ *.vue — no files [SKIPPED]
❯ *.{scss,less,styl,html} — 1 file
✖ stylelint --fix [FAILED]
◼ prettier --write
↓ *.md — no files [SKIPPED]
↓ Skipped because of errors from tasks. [SKIPPED]
✔ Reverting to original state because of errors...
✔ Cleaning up temporary files...
✖ stylelint --fix:
Error: All input files were ignored because of the ignore pattern. Either change your input, ignore pattern or use "--allow-empty-input" to allow no inputs
at standalone (/Users/***/node_modules/.pnpm/registry.npmmirror.com+stylelint@14.12.1/node_modules/stylelint/lib/standalone.js:272:43)
at processTicksAndRejections (node:internal/process/task_queues:96:5)
ELIFECYCLE Command failed with exit code 1.
原因
正如报错指出的一样,所有输入的文件都是被忽略的由于忽略模式。
解决方式
正如报错提示Either change your input, ignore pattern or use "--allow-empty-input" to allow no inputs
解决思路:
建议代码提交的频繁一些,不要积攒了大量的代码之后一起提交,如果有报错的话,会加大错误处理难度(耗时会比较多);
检查输入文件;
由于使用sourcetree提交时的报错信息看起来可能不太好看,因此如果有报错的话,建议使用终端命令行进行检查
pnpm lint:lint-staged
看到是stylelint --fix报错时可以优先想到检查样式相关文件;
如果改动的样式文件都被忽略了,那么就会出现以上错误;
可以多编辑一个其他的没有被忽略的样式文件来解决这个问题;
如何忽略检查文件
- 在 .stylelintignore 文件中添加对应的目录或者文件,例如:
/dist/*
/public/*
/src/assets/styles/themes/element-plus/*
- 在 .eslintignore 文件中添加对应的目录或者文件,例如:
*.sh
node_modules
*.md
*.woff
*.ttf
.vscode
.idea
dist
/public
/docs
.husky
.local
/bin
/src/mock
Dockerfile
commitlint.config.js
报错后有时代码会被放到 贮藏/储藏/Stash 区,需要重新放到暂存区才能继续编辑继续提交
相关连接: 前端项目 git commit 后代码消失,别慌
注意
需要把相关的error都处理完了才能正常提交推送。