如何关闭 Markdown 文件的 VS Code 自动格式化?

问题描述

在 VS Code 中保存时,有没有办法从自动格式化中排除我的 Readme.md 文件?我仍然想要其他文件类型的自动格式化。

解决方法

转到 settings.json 并粘贴:

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

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