2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

フォーマッター「Prettier」のセットアップ(vscode)

Posted at

拡張機能でprettierを検索しインストール
image.png

ファイルタブ→ユーザー設定→設定の順にクリック
image.png

Formatで検索してメニューのテキストエディターの書式設定でFormat On Saveにチェック
image.png

動作確認。ファイルを作成しpackage.jsonと同じ階層に配置

.prettierrc
{
  "tabWidth": 2,
  "singleQuote": true,
  "printWidth": 80,
  "bracketSpacing": false,
  "semi": false
}

余分なインデントを保存時に消すのを確認
20220614.gif

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?