diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 94298ef..cd876d4 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,14 +1,18 @@ { // 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": [ "editorconfig.editorconfig", - "ms-python.python" + "njpwerner.autodocstring", + "ms-python.black-formatter", + "ms-python.isort", + "ms-python.vscode-pylance", + "ms-python.python", + "donjayamanne.python-environment-manager", + "charliermarsh.ruff", + "bungcip.better-toml" ], // List of extensions recommended by VS Code that should not be recommended for users of this workspace. - "unwantedRecommendations": [ - - ] + "unwantedRecommendations": [] }