From ee013e29fca1c1ac31d341a26c275c6ebba000eb Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Tue, 10 May 2022 04:13:22 -0700 Subject: [PATCH] Make sure public prettier plugin is recommended when developing on Flipper 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 --- .vscode/extensions.json | 9 +++++++++ desktop/.vscode/extensions.json | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 .vscode/extensions.json create mode 100644 desktop/.vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 000000000..7824889d2 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,9 @@ +{ + // 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": [] +} diff --git a/desktop/.vscode/extensions.json b/desktop/.vscode/extensions.json new file mode 100644 index 000000000..7824889d2 --- /dev/null +++ b/desktop/.vscode/extensions.json @@ -0,0 +1,9 @@ +{ + // 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": [] +}