diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index f81aced..80d094e 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,10 +6,18 @@ "terminal.integrated.profiles.linux": { "zsh (login)": { "path": "zsh", - "args": ["-l"] + "args": [ + "-l" + ] } }, - "python.pythonPath": "/usr/local/bin/python" + "python.pythonPath": "/usr/local/bin/python", + "python.linting.enabled": true, + "python.linting.pylintEnabled": false, + "python.linting.flake8Enabled": true, + "python.linting.lintOnSave": true, + "python.formatting.provider": "black", + "editor.formatOnSave": true }, "extensions": [ "ms-python.python",