migration to ESLint v9 flat config

This commit is contained in:
Nebel 2024-10-09 19:07:27 +09:00
parent e8b70fa56f
commit cd01809e02
Signed by: nebel
GPG key ID: 79807D08C6EF6460
2 changed files with 5 additions and 8 deletions

View file

@ -36,7 +36,6 @@ Ok to proceed? (y) <Enterキーを入力>
| Which framework does your project use? (プロジェクトでは、どのフレームワークを使用していますか?) | None of these (いずれもなし) |
| Does your project use TypeScript? (あなたのプロジェクトではTypeScriptを使用していますか?) | No (いいえ) |
| Where does your code run? (コードはどこで実行しますか?) | Node (Node.js) |
| What format do you want your config file to be in? (設定ファイルの形式は?) | JavaScript |
| Would you like to install them now? (今すぐインストールしますか?) | Yes (はい) |
| Which package manager do you want to use? (どのパッケージマネージャを使用しますか?) | npm |

View file

@ -56,13 +56,11 @@ npm i -D eslint-config-prettier
```
```js
// .eslintrc.js
module.exports = {
extends: [
"eslint:recommended",
"prettier", // extends の要素として追加
],
};
// eslint.config.js
import js from "@eslint/js";
import prettier from "eslint-config-prettier";
export default [js.configs.recommended, prettier];
```
こうすることによって、Prettierで整形を行うことができない問題を回避することができます。必要に応じて行いましょう。