Skip to content

Commit

Permalink
開発環境構築に関する記述について細かな改善を行う (#1525)
Browse files Browse the repository at this point in the history
* Node.jsのインストールについて説明を追記

* 拡張機能の説明文を改善
Stylelintのエルを小文字に修正

* 最新のLTSバージョンに記載を変更
  • Loading branch information
KentaHizume authored Nov 7, 2024
1 parent 2d38830 commit ca49573
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,13 @@ JDK のインストール時のカスタムセットアップで設定済みで
### Node.js のインストール {#install-node}
1. [こちらのサイト :material-open-in-new:](https://nodejs.org/en/){ target=_blank } からインストーラーを取得します。
1. [こちらのサイト :material-open-in-new:](https://nodejs.org/en/){ target=_blank } からインストーラーを取得します。 Node.js のインストーラーは、原則最新の LTS 版を利用してください。
1. インストーラーを実行します。カスタムセットアップにて、 npm のインストールと PATH の追加をするよう設定することを推奨します ( 既定値のままインストールすると npm のインストールと PATH の設定が行われます ) 。
1. 以下のコマンドが実行できればインストールは完了です。
```ps1 title="Node.js と npm のバージョン確認"
node --version
npm --version
```
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ Visual Studio Code を利用する場合、クライアントサイドアプリ

- [Prettier - Code formatter :material-open-in-new:](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode){ target=_blank }

EditorConfig や ESLint 、 StyleLint と連携して、より詳細なコーディングルールを適用する機能を提供します
EditorConfig と連携して、統一したスタイルにコードを整形する機能を提供します

- [language-postcss :material-open-in-new:](https://marketplace.visualstudio.com/items?itemName=cpylua.language-postcss){ target=_blank }

PostCSS で記述されたコードの可読性を向上させる機能を提供します。
また、 StyleLint と連携することで、 PostCSS のコードのエラーを検出できます。
CSS で記述されたコードの可読性を向上させる機能を提供します。
また、 Stylelint と連携することで、 CSS のコードのエラーを検出できます。

0 comments on commit ca49573

Please sign in to comment.