ESLintを8.xから9.xに更新

ESLintを8.xから9.xに更新

ESLint9.xから今まで使用していた.eslintrc.json形式のファイルが使用できなくなっていました。

Oops! Something went wrong! :(

ESLint: 9.10.0

ESLint couldn't find an eslint.config.(js|mjs|cjs) file.

From ESLint v9.0.0, the default configuration file is now eslint.config.js.
If you are using a .eslintrc.* file, please follow the migration guide
to update your configuration file to the new format:

https://eslint.org/docs/latest/use/configure/migration-guide

If you still have problems after following the migration guide, please stop by
https://eslint.org/chat/help to chat with the team.

https://eslint.org/docs/latest/use/configure/migration-guide

を参考に設定ファイルのマイグレーションを行っていきます。

npx @eslint/migrate-config .eslintrc.json

こちら実行することにより「eslint.config.mjs」ファイルが生成されるかと思います。

package.jsonにて

  "scripts": {
    "test": "...",
    "lint": "eslint",
  },

とある場合同じように

npm run lint .

などと実行して以前通りの動作をするか確認できたら移行完了です。