From 51ee0f58fd8fc89d2c375ccb6383565af2015296 Mon Sep 17 00:00:00 2001 From: Sravana Neeli Date: Mon, 16 Dec 2024 10:08:25 -0800 Subject: [PATCH] update devcontainer as per ruff --- .devcontainer/devcontainer.json | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) 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" ] } },