From 42eaeb689f0255cc6b3d7d4ab6bd95137afe5481 Mon Sep 17 00:00:00 2001 From: Andres Toom Date: Mon, 14 Aug 2023 16:27:42 +0300 Subject: [PATCH] Disable flake8, pydocstyle and pylint in VS Code settings The equivalent checks are now performed via Ruff and configured in pyproject.toml as Ruff checks. Installing the Ruff extension to VS Code enables their execution also within VS Code. --- .vscode/settings.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index c83cca202..dd234ccf8 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,11 +11,10 @@ ], "python.formatting.provider": "black", "python.linting.enabled": true, - "python.linting.flake8Enabled": true, - "python.linting.flake8Path": ".venv/bin/pflake8", + "python.linting.flake8Enabled": false, "python.linting.mypyEnabled": true, - "python.linting.pydocstyleEnabled": true, - "python.linting.pylintEnabled": true, + "python.linting.pydocstyleEnabled": false, + "python.linting.pylintEnabled": false, "python.testing.pytestArgs": [ "-vv", "-nauto",