1. ホーム
  2. javascript

[解決済み] npmスクリプトからeslint -fixを実行する方法

2022-03-07 03:35:57

質問

パッケージ.jsonにlint-fixを追加しようとしています。 私の基本的なlintは "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! [email protected] 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.

解決方法は?

以下のコマンドを実行してください。

npm run lint -- --fix