Esben Peterson, he's the original developer of Prettier for VS Code, as can be seen in the commit history.

Answer from Nick is tired on Stack Overflow
🌐
DigitalOcean
digitalocean.com › community › tutorials › how-to-format-code-with-prettier-in-visual-studio-code
Format Code with Prettier in Visual Studio Code: Setup Guide | DigitalOcean
August 1, 2025 - Note: If you do not see a prompt for selecting a default formatter, you can manually set Prettier as the default formatter in VS Code. Open your Settings and set Editor: Default Formatter to esbenp.prettier-vscode.
🌐
Robin Wieruch
robinwieruch.de › how-to-use-prettier-vscode
How to use Prettier in VS Code
"editor.defaultFormatter": "esbenp.prettier-vscode" } Afterward, a JavaScript file should format automatically once you save it. Now you don't need to worry about your code formatting anymore, because Prettier takes care of it. Prettier comes with a few options which you can apply globally too; which I like to do for my personal projects: "editor.formatOnSave": true ·
🌐
GitHub
github.com › prettier › prettier-vscode
GitHub - prettier/prettier-vscode: Visual Studio Code extension for Prettier · GitHub
{ "editor.defaultFormatter": "esbenp.prettier-vscode", "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" } } Note: VS Code does not support combined language syntax for editor.defaultFormatter.
Author   prettier
🌐
DEV Community
dev.to › receter › how-to-install-prettier-in-your-codebase-and-vscode-4c19
How to Install Prettier in Your Codebase and VSCode - DEV Community
August 14, 2024 - Next you can setup a Prettier plugin for your IDE. I use Visual Studio Code, but there are also plugins for many other editors. For VSCode, install this extension: esbenp.prettier-vscode
🌐
GitHub
github.com › prettier › prettier-vscode › issues › 3631
esbenp.prettier-vscode formats more than needed by normal prettier · Issue #3631 · prettier/prettier-vscode
December 30, 2024 - Summary esbenp.prettier-vscode reformats code that when running npx prettier --write filename it will format this : export class Test { private test(params: any) { console.log(); } private test2() { this.test({ parameter1: 1, parameter2:...
Published   Feb 19, 2025
Find elsewhere
🌐
Gleb Bahmutov
glebbahmutov.com › blog › configure-prettier-in-vscode
How to configure Prettier and VSCode | Better world by better software
April 23, 2024 - You can configure Prettier and its VSCode extension to format your JSON files. Since there is already a default JSON formatter built into VSCode, you need to tell VSCode to specifically use esbenp.prettier-vscode to format JSON files.
🌐
MangoHost
mangohost.net › mangohost blog › format code with prettier in visual studio code
Format Code with Prettier in Visual Studio Code
August 3, 2025 - { "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "editor.formatOnPaste": true, "editor.formatOnType": false } For language-specific formatting, you can override the default formatter: { "[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" } } Creating a Prettier Configuration File: Create a .prettierrc file in your project root with your preferred settings: { "semi": true, "trailingComma": "es5", "singleQ
🌐
Oreate AI
oreateai.com › blog › taming-your-code-a-friendly-guide-to-running-prettier-in-vs-code › 62c08a603ea49b9e6f9c5abe20eecf8d
Taming Your Code: A Friendly Guide to Running Prettier in VS Code - Oreate AI Blog
January 28, 2026 - A friendly guide to setting up and running Prettier in VS Code for consistent code formatting, covering default formatter settings, disabling conflicts, project-specific rules, and formatting on save.
🌐
VsixHub
vsixhub.com › vsix › 47
Prettier 11.0.0 VSIX (Latest Version) - VsixHub
August 14, 2024 - • Unique Identifier: esbenp.prettier-vscode · • Vsix File: prettier-vscode-11.0.0_vsixhub.com.vsix · • Extension Version: 11.0.0 · • Requires: VS Code 1.80.0 and up · • File Size: 2.36 MB (2469933 Bytes) • MD5: 9817be2f82db62b1a0ea2401f92953ed ·
Rating: 3.5 ​ - ​ 347 votes
🌐
TMS Outsource
tms-outsource.com › home › how to use prettier in vscode to format code
How to Use Prettier in VSCode to Format Code
December 18, 2025 - Navigate to File > Preferences > Settings (or press Ctrl+,), search for “Default Formatter” in the search bar, then select “esbenp.prettier-vscode” from the dropdown menu to make Prettier handle all code formatting tasks.
🌐
MyNixOS
mynixos.com › nixpkgs › package › vscode-extensions.esbenp.prettier-vscode
vscode-extension-esbenp-prettier-vscode - MyNixOS
Nix package vscode-extension-esbenp-prettier-vscode declared in nixpkgs. Code formatter using prettier.
🌐
Reddit
reddit.com › r/vscode › why my vs code pettier not working ?
r/vscode on Reddit: Why my VS code pettier not working ?
March 13, 2021 -

I have been searching google for several hours.

Many user have similar problem with me. https://stackoverflow.com/questions/52586965/why-does-prettier-does-not-format-code-in-vs-code/64273353#64273353

But none of the solution works for me.

https://imgur.com/2ssn1Vt

I have prettier installed. And I have tried the following

1.Command + Shift + p

2.type format document with

3.select Configure Default Formatter...

https://imgur.com/xw5oYvS

Then I cant select Prettier as default.

I only give me Python(default) as the only option.

I have a setting.json inside my root. Is it related?

https://imgur.com/KbEdsOV

🌐
Medium
medium.com › @sabirsafder › how-to-configure-prettier-in-vs-code-a-step-by-step-guide-e360ef6a9a2a
How to install & Configure Prettier in VS Code | by Sabir Hussain | Medium
June 10, 2024 - Go to Vscode extensions by clicking on the left-side “extensions” icon in VScode. Search for “prettier” and click on “install”. Press enter or click to view image in full size · 2. Go to settings in VS Code settings · 3. Open ...