Make Markdown default to "format_on_save": "off" (#11584)

This PR changes the Markdown language defaults to set `format_on_save`
to be `off`.

Prettier's Markdown formatting is a bit controversial for some people,
so we turn it off by default.

To restore the previous behavior, add the following to your settings:

```json
{
  "languages": {
    "Markdown": {
      "format_on_save": "on"
    }
  }
}
```


Release Notes:

- Changed the default `format_on_save` behavior for Markdown files to be
`off`.
This commit is contained in:
Marshall Bowers 2024-05-08 18:44:21 -04:00 committed by GitHub
parent a7aa2578e1
commit adecbd1815
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -628,6 +628,9 @@
"Make": {
"hard_tabs": true
},
"Markdown": {
"format_on_save": "off"
},
"Prisma": {
"tab_size": 2
}