9

is there any way to auto-format HTML and Javascript code on saving in Visual Studio like Visual Studio Code?

Mohammad Ali Rony
  • 4,066
  • 2
  • 17
  • 29
  • **See Also**: [How do you auto format code in Visual Studio?](https://stackoverflow.com/q/5755942/1366033) – KyleMit May 05 '21 at 18:53

2 Answers2

7

The plugin Format document on Save seems to to do what you ask:

Enables auto formatting of the code when you save a file. Visual Studio supports auto formatting of the code with the Ctrl + E , D or Ctrl + E , F key shortcuts but with this extension the command Format Document is executed on Save.

KyleMit
  • 35,223
  • 60
  • 418
  • 600
GrafiCode
  • 2,147
  • 3
  • 25
  • 24
5

Since Visual Studio 2022 17.1 there is a builtin Feature to run code formatting on save (see devblogs.microsoft), meaning there is no need to install extensions like Format document on Save.

enter image description here

kraego
  • 1,653
  • 1
  • 15
  • 27