From b4e6977b84adf8eafe3be39a3f345af537221f0b Mon Sep 17 00:00:00 2001 From: Timothy Johnson Date: Mon, 2 Oct 2023 10:35:18 -0400 Subject: [PATCH] Add VSCode settings to enable code formatters Signed-off-by: Timothy Johnson --- .vscode/settings.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..baf3b191 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,9 @@ +{ + "editor.formatOnSave": true, + "python.formatting.provider": "black", + "[python]": { + "editor.codeActionsOnSave": { + "source.organizeImports": true + } + } +}