From e486a3c50602633ceab2c1f304cb8562e0ea36ce Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Fri, 5 Aug 2022 10:50:56 +0000 Subject: [PATCH] VSCode: Enable format with black on save --- .vscode/settings.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index ff489e2..7c09e19 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,5 @@ { - "python.linting.mypyEnabled": true + "editor.formatOnSave": true, + "python.formatting.provider": "black", + "python.linting.mypyEnabled": true, }