


In Visual Studio Code, press Control + Shift + P or Command + Shift + P (Mac) to open the command palette and type save and then select the Save without Formatting option.This will make you more productive as you will not be wasting your time in formatting code.īut sometimes, it may happen that, you don't want the formatting done by prettier and you want to keep your own formatting for a particular file, then you can follow the following step: Now, write the code any way you want and just save the file to format it. So now, you don’t have to worry about adding or removing space or moving code to the second line if it does not fit on one line. Then on saving, it will be formatted like this: Now If you save any file then you will see the file formatted properly. Select prettier formatter from the options list.Then you will be asked to select the default formatter.Press Control + Shift + P or Command + Shift + P (Mac) to open the command palette and type format document and then select Format Document option.

Follow the below steps to get it working. If you don't see the code formatted automatically on file save then it might be because you have multiple formatters installed in VS Code. If you save the file using Ctrl + S or Command + S (Mac), the prettier will format your code as shown below: That’s it! Congratulation! You have configured prettier to format as per the default settings. Search for format on save setting and check the checkbox.To automatically format the file on save, In Visual Studio Code, press Control + Shift + P or Command + Shift + P (Mac) to open the command palette and type setting and then select Preferences: Open User Settings option.Hit the Reload button or restart the VS Code, once the extension is installed.You will see the extension from Prettier.Click on the extensions icon in VS Code.Install the Prettier extension for VS Code which formats code written in Javascript, Angular, Vue, React, Typescript and many other languages. So in this article, we will see how to set up Prettier formatter in Visual Studio Code(VS Code). This will improve your productivity by not wasting time in formatting the code If the line gets longer and does not fit on screen.Īlso, using a formatter avoids bugs in your code so you will clearly see where your specific block starts and where it ends and helps to identify matching brackets in the code. Whenever we're working on any project, It's important to have a default formatter set up for your Code Editor.
