From bbcdfbf6980de6bd0d52137d6171c0d1299d6a3b Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Mon, 21 Mar 2022 22:27:16 -0500 Subject: [PATCH] Add vscode extension recommendation --- .gitignore | 4 ++-- .vscode/extensions.json | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 .vscode/extensions.json diff --git a/.gitignore b/.gitignore index 17672ef5..9ddb775b 100644 --- a/.gitignore +++ b/.gitignore @@ -89,8 +89,8 @@ cython_debug/ !.vscode/settings.json #!.vscode/tasks.json #!.vscode/launch.json -#!.vscode/extensions.json -#!.vscode/*.code-snippets +!.vscode/extensions.json +!.vscode/*.code-snippets # Local History for Visual Studio Code .history/ diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 00000000..67d11681 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + // List of extensions which should be recommended for users of this workspace. + "recommendations": [ + "redhat.vscode-yaml", + "ms-python.vscode-pylance", + "ms-python.python" + ], + // List of extensions recommended by VS Code that should not be recommended for users of this workspace. + "unwantedRecommendations": [] +} \ No newline at end of file