Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to turn off VS Code auto-formatting for Markdown files? [duplicate]

Is there a way to exclude my Readme.md file from auto-formatting when saving in VS Code? I still want auto-format for other file types.

like image 639
Bill Avatar asked Sep 05 '25 17:09

Bill


1 Answers

Go to settings.json and paste:

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

Here is the link, where you find this and other configurations

like image 75
galizien Avatar answered Sep 10 '25 05:09

galizien