Disable HTML attribute alignment in Visual Studio Code
This worked for me. In your "Settings.json" file add the line
"prettier.printWidth": 300
The default setting for this is:
"html.format.wrapAttributes": "auto"
With "auto"
meaning:
Wrap attributes only when line length is exceeded.
The line length is defined in a different setting and defaults to 120
:
// Maximum amount of characters per line (0 = disable).
"html.format.wrapLineLength": 120
So setting "html.format.wrapLineLength"
to 0
should give you the desired behavior.