Skip to content

Commit

Permalink
Disable flake8, pydocstyle and pylint in VS Code settings
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
andrestt committed Aug 16, 2023
1 parent 580fb91 commit 42eaeb6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 42eaeb6

Please sign in to comment.