How to fix prettier messing up your HTML on save
Like everyone I use Prettier to format my JS files.
I’ve had some issues with Prettier formatting my HTML like this:
The solution I found is to add this to your settings.json file to tell VS Code to use the default HTML formatter instead of Prettier:
{
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
}
I wrote 21 books to help you become a better developer:
- HTML Handbook
- Next.js Pages Router Handbook
- Alpine.js Handbook
- HTMX Handbook
- TypeScript Handbook
- React Handbook
- SQL Handbook
- Git Cheat Sheet
- Laravel Handbook
- Express Handbook
- Swift Handbook
- Go Handbook
- PHP Handbook
- Python Handbook
- Linux Commands Handbook
- C Handbook
- JavaScript Handbook
- Svelte Handbook
- CSS Handbook
- Node.js Handbook
- Vue Handbook