From 7dfbfd8df667215f611298a5c9b9702f88600093 Mon Sep 17 00:00:00 2001 From: Simone Chemelli Date: Thu, 23 May 2024 20:38:20 +0000 Subject: [PATCH] build: remove black leftover --- .devcontainer/devcontainer.json | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 2e3b3a18..234b76e6 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -19,15 +19,11 @@ "editor.formatOnPaste": false, "editor.formatOnSave": true, "editor.formatOnType": true, - "python.formatting.provider": "black", - "python.testing.pytestArgs": [ - "tests" - ], + "python.formatting.provider": "charliermarsh.ruff", + "python.testing.pytestArgs": ["tests"], "python.testing.pytestEnabled": true, "python.testing.unittestEnabled": false, - "pylint.args": [ - - ], + "pylint.args": [], "files.trimTrailingWhitespace": true }, // Add the IDs of extensions you want installed when the container is created. @@ -45,4 +41,4 @@ "remoteUser": "root", "containerUser": "vscode", "postAttachCommand": ["pip3 install --user -r requirements.txt"] -} \ No newline at end of file +}