diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 1bf1b1d516..8c88cd3888 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,26 +3,21 @@ "customizations": { "vscode": { "settings": { - "python.linting.enabled": true, - "python.linting.flake8Enabled": true, - "python.linting.pylintEnabled": false, "python.testing.pytestEnabled": true, "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.organizeImports": true }, "[python]": { - "editor.defaultFormatter": "ms-python.black-formatter" + "editor.defaultFormatter": "charliermarsh.ruff" }, "editor.rulers": [ 80 ] }, "extensions": [ - "ms-python.python", - "ms-python.isort", - "ms-python.flake8", - "ms-python.black-formatter" + "charliermarsh.ruff", + "ms-python.python" ] } },