From: David Anthoff Date: Thu, 19 Feb 2026 12:18:25 +0000 (-0800) Subject: Add a extensions.json file to .vscode (#3068) X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=aa61b81df1ce77661b63ab3824968575642684e2;p=music-assistant-server.git Add a extensions.json file to .vscode (#3068) * Add a extensions.json file to .vscode * Update .vscode/extensions.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Add another extension to the VS Code recommended set * Remove Python env extension from recommended extensions * Adjust whitespacing --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 00000000..1e79176e --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,10 @@ +{ + "recommendations": [ + "ms-python.mypy-type-checker", + "ms-python.python", + "ms-python.debugpy", + "ms-python.vscode-pylance", + "charliermarsh.ruff", + "esbenp.prettier-vscode" + ] +}