From c72978fcac946ad0adca33753986711242232530 Mon Sep 17 00:00:00 2001 From: Anson Date: Mon, 4 Sep 2023 04:20:28 +0000 Subject: [PATCH] improve dev tooling --- .devcontainer/devcontainer.json | 11 ++++++----- .vscode/settings.json | 1 + 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 830e765..2dc4b08 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -14,11 +14,12 @@ "customizations": { "vscode": { "extensions": [ - "ms-python.black-formatter", - "ms-python.flake8", - "ms-python.vscode-pylance", - "ms-python.python" - ] + "ms-python.python", + "ms-python.black-formatter", + "ms-python.flake8", + "ms-python.vscode-pylance", + "ms-python.isort" + ] } }, diff --git a/.vscode/settings.json b/.vscode/settings.json index 569447a..a024e50 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,6 +2,7 @@ "python.formatting.provider": "none", "python.linting.mypyEnabled": true, "python.linting.flake8Enabled": true, + "editor.formatOnSave": true, "[python]": { "editor.defaultFormatter": "ms-python.black-formatter", }