support all errors in ruff linter

This commit is contained in:
Jakub Trllo 2024-11-25 10:35:21 +01:00
parent 8b625cdbf1
commit 207b1961a4

View file

@ -68,7 +68,7 @@ target-version = "py39"
[tool.ruff.lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
select = ["E4", "E7", "E9", "F", "W"]
select = ["E", "F", "W"]
ignore = []
# Allow fix for all enabled rules (when `--fix`) is provided.