hacam308
hacam308

Reputation: 23

How to auto format code when type semicolon in VSCode

I want type semicolon and then auto format code look like Visual studio.

Look like this enter image description here

don't this enter image description here

Upvotes: 1

Views: 2494

Answers (1)

GabrielWD
GabrielWD

Reputation: 46

I assume you are using VSCode given the tag you added to your post. With this information, I would suggest you look into the "Format on type" property in the settings of VSCode. First, to enter the settings you do the following:

File > Preferences > Settings

Then you look up in the search bar "format on type" and you should see the next option available:

Editor: Format on type
☐ Controls whether the editor should automatically format the line after typing.

It may be language dependent how well it works, and it could be affected by linting extensions. I hope it helped!

Extra information:

Upvotes: 3

Related Questions