如何运行 eslint --fix from npm script

2022-08-30 05:09:16

我正在尝试在我的 package.json 中添加 lint-fix。我的基本棉绒是"lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs"

我确实尝试过,但它抛出了我的错误,但没有修复它们。"lint-fix": "eslint --fix --ext .js,.vue src test/unit/specs test/e2e/specs"

我需要更改哪些内容?

来自 NPM 的错误是:

217 problems (217 errors, 0 warnings)
npm ERR! Windows_NT 10.0.14393
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "run-script" "lint-fix"
npm ERR! node v5.10.1
npm ERR! npm v3.8.3
npm ERR! code ELIFECYCLE
npm ERR! quasar-app@0.0.1 lint-fix: eslint --fix --ext .js,.vue src
npm ERR! Exit status 1
npm ERR! but it is caused by exit code 1 which is result of finding errors.

答案 1

您可以运行以下命令:

npm run lint -- --fix

答案 2

您可以在 package.json 中添加新命令。

"scripts": {
    "lint": "eslint --fix --ext .js,.jsx ."
}

然后你可以在终端中运行它。npm run lint