Skip to content

Commit 27c2302

Browse files
authored
Migrate to new Prettier extension location (#1976)
Prettier is migrating to a new extension ID. Update the recommended extension ID as well as the documentation.
1 parent 4bcb84b commit 27c2302

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
// Add the IDs of extensions you want installed when the container is created.
2424
"extensions": [
2525
"dbaeumer.vscode-eslint",
26-
"esbenp.prettier-vscode",
26+
"prettier.prettier-vscode",
2727
"llvm-vs-code-extensions.lldb-dap"
2828
]
2929
}

.vscode/extensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
// See http://go.microsoft.com/fwlink/?LinkId=827846
33
// for the documentation about the extensions.json format
4-
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
4+
"recommendations": ["dbaeumer.vscode-eslint", "prettier.prettier-vscode"]
55
}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
// Configure Prettier
1515
"editor.formatOnSave": true,
16-
"editor.defaultFormatter": "esbenp.prettier-vscode",
16+
"editor.defaultFormatter": "prettier.prettier-vscode",
1717

1818
// Disable for when opening files in this workspace
1919
"swift.disableAutoResolve": true,

0 commit comments

Comments
 (0)