From 43ede21c353467e5f7d90c13fe016bc24c847ece Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Sat, 1 Jun 2024 20:34:40 -0700 Subject: [PATCH] Recommends some extensions and sets the default interpreter path (#6884) --- paperless-ngx.code-workspace | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/paperless-ngx.code-workspace b/paperless-ngx.code-workspace index 7030ae655..85f5a836b 100644 --- a/paperless-ngx.code-workspace +++ b/paperless-ngx.code-workspace @@ -31,6 +31,11 @@ "**/.venv": true, "**/.coverage": true, "**/coverage.json": true - } + }, + "python.defaultInterpreterPath": ".venv/bin/python3", + }, + "extensions": { + "recommendations": ["ms-python.python", "charliermarsh.ruff", "editorconfig.editorconfig"], + "unwantedRecommendations": ["ms-python.black-formatter"] } }