From 94fa1987d30dc7f2defdf1a6c82d61ee3573ec5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Sat, 12 Feb 2022 14:43:42 +0100 Subject: [PATCH] fix(.vscode): python.pythonPath deprecated --- .vscode/settings.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 91b5645..8e288a6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,5 @@ { - "python.pythonPath": ".venv/bin/python", + "python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python", "python.formatting.provider": "black", "editor.formatOnSave": true, "python.linting.enabled": true, @@ -13,9 +13,6 @@ } }, "python.analysis.extraPaths": [ - "./mgba/src/platform/python" + "${workspaceFolder}/mgba/src/platform/python", ], - "conventionalCommits.scopes": [ - ".vscode" - ] }