DEV Community

Cover image for Prettier and Standard in VSCode
Zell Liew πŸ€—
Zell Liew πŸ€—

Posted on • Originally published at zellwk.com

Prettier and Standard in VSCode

Prettier is an opinionated tool that helps you format code. I love Prettier, but I don't like its opinions with JavaScript. I prefer using Standard for JavaScript because it doesn't have semicolons (which makes the code cleaner to read).

It used to be complicated to use Prettier and Standard together. We had to disable Prettier for specific languages. Thankfully, there's a simpler way now.

We can use an extension called Prettier Standard VSCode. It changes JavaScript from the Prettier default format into Standard.

I've tested this extension and it continues to work like all other Prettier extensions like .html and .css.

The good thing about using Prettier Standard VSCode is we can continue to use Standard in files with mixed syntaxes like HTML and markdown.

Here's an example where I edited markdown with Prettier:

Markdown edited with Prettier

And here's one with Prettier Standard.

Markdown edited with Prettier Standard

For languages that Prettier doesn't support, you can always overwrite Prettier with a different formatter, like this:

"[nunjucks]": {
  "editor.defaultFormatter": "okitavera.vscode-nunjucks-formatter"
},
Enter fullscreen mode Exit fullscreen mode

I hope this helps you set up your JavaScript environment!


Thanks for reading. This article was originally posted on my blog. Sign up for my newsletter if you want more articles to help you become a better frontend developer.

Top comments (2)

Collapse
 
kalashin1 profile image
Kinanee Samson

More detail would be appreciated, but nevertheless good work pal

Collapse
 
rasujan profile image
Sujan Maharjan

If it's just about the semi colon you can actually setup to remove semicone into prettier extension settings