Skip to content

Instantly share code, notes, and snippets.

@chestozo
Created June 6, 2020 14:16
Show Gist options
  • Save chestozo/964564afb2085903f34597ea90bb33bc to your computer and use it in GitHub Desktop.
Save chestozo/964564afb2085903f34597ea90bb33bc to your computer and use it in GitHub Desktop.
How to disable prettier formatting for HTML files in VSCode
{
"files.autoSave": "onFocusChange",
"prettier.requireConfig": true,
"prettier.disableLanguages": [
"HTML"
],
"editor.formatOnSave": true,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"html.format.enable": false,
"html.format.wrapLineLength": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment