From 2c4c9b014633694f4b5609fca058d5954d08e972 Mon Sep 17 00:00:00 2001 From: Vincent Fugnitto Date: Wed, 21 Aug 2019 09:09:11 -0400 Subject: [PATCH] Include 'extensions.json' which describes recommended extensions for development Fixes #6005 - added the `.vscode/extensions.json` file which is used to describe recommended extensions which are used for development. This will help collaborators install extensions which are important for Theia's development and help in productivity. Signed-off-by: Vincent Fugnitto --- .vscode/extensions.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000000000..5e51eb292381b --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // See http://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": [ + "ms-vscode.vscode-typescript-tslint-plugin" + ], + // List of extensions recommended by VS Code that should not be recommended for users of this workspace. + "unwantedRecommendations": [] +}