mirror of
https://github.com/kou029w/nodejs-hands-on.git
synced 2025-01-18 16:08:05 +00:00
migration to ESLint v9 flat config
This commit is contained in:
parent
e8b70fa56f
commit
cd01809e02
2 changed files with 5 additions and 8 deletions
|
@ -36,7 +36,6 @@ Ok to proceed? (y) <Enterキーを入力>
|
||||||
| Which framework does your project use? (プロジェクトでは、どのフレームワークを使用していますか?) | None of these (いずれもなし) |
|
| Which framework does your project use? (プロジェクトでは、どのフレームワークを使用していますか?) | None of these (いずれもなし) |
|
||||||
| Does your project use TypeScript? (あなたのプロジェクトではTypeScriptを使用していますか?) | No (いいえ) |
|
| Does your project use TypeScript? (あなたのプロジェクトではTypeScriptを使用していますか?) | No (いいえ) |
|
||||||
| Where does your code run? (コードはどこで実行しますか?) | Node (Node.js) |
|
| 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 (はい) |
|
| Would you like to install them now? (今すぐインストールしますか?) | Yes (はい) |
|
||||||
| Which package manager do you want to use? (どのパッケージマネージャを使用しますか?) | npm |
|
| Which package manager do you want to use? (どのパッケージマネージャを使用しますか?) | npm |
|
||||||
|
|
||||||
|
|
|
@ -56,13 +56,11 @@ npm i -D eslint-config-prettier
|
||||||
```
|
```
|
||||||
|
|
||||||
```js
|
```js
|
||||||
// .eslintrc.js
|
// eslint.config.js
|
||||||
module.exports = {
|
import js from "@eslint/js";
|
||||||
extends: [
|
import prettier from "eslint-config-prettier";
|
||||||
"eslint:recommended",
|
|
||||||
"prettier", // extends の要素として追加
|
export default [js.configs.recommended, prettier];
|
||||||
],
|
|
||||||
};
|
|
||||||
```
|
```
|
||||||
|
|
||||||
こうすることによって、Prettierで整形を行うことができない問題を回避することができます。必要に応じて行いましょう。
|
こうすることによって、Prettierで整形を行うことができない問題を回避することができます。必要に応じて行いましょう。
|
||||||
|
|
Loading…
Add table
Reference in a new issue