added pycodestyle warnings to ruff validation

This commit is contained in:
Jakub Trllo 2024-09-03 14:24:08 +02:00
parent 90f50028df
commit f6477b98f1

View file

@ -67,7 +67,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"]
select = ["E4", "E7", "E9", "F", "W"]
ignore = []
# Allow fix for all enabled rules (when `--fix`) is provided.