0
0

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.

VSCodeでMarkdownの自動整形を無効にする

Last updated at Posted at 2021-12-02

背景

Markdownファイルを編集していたときに、保存をするとPrettierの自動整形が原因でテーブルなどがぐちゃぐちゃになってしまいました。
そこでMarkdownの自動整形を無効にしようと思います。

settings.jsonを開く

こちらを参考にしました
https://qiita.com/y-w/items/614843b259c04bb91495

Markdownの設定を追記

settings.json
"[markdown]": {
        "editor.formatOnSave": false
}

memo

言語単位で無効にする設定はできなくなったようですね。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?