Summary: On a fresh VS Code install, only the internal Prettier plugin is available, but not the open source version, which we need as the internal one doesn't work on Flipper (probably due to TypeScript?) Reviewed By: lblasa Differential Revision: D36275616 fbshipit-source-id: bccbbcd372f7a7ecca46eb83f5515543e611235c
10 lines
451 B
JSON
10 lines
451 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
|
|
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
|
|
|
|
// List of extensions which should be recommended for users of this workspace.
|
|
"recommendations": ["esbenp.prettier-vscode"],
|
|
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
|
|
"unwantedRecommendations": []
|
|
}
|