Add flake8-comprehensions and flake8-debugger rules to ruff.

This commit is contained in:
Andrey Rakhmatullin 2024-12-01 12:02:11 +05:00
parent c184f12ab5
commit e53d6f09bc
1 changed files with 4 additions and 0 deletions

View File

@ -238,6 +238,10 @@ filterwarnings = []
extend-select = [
# flake8-bugbear
"B",
# flake8-comprehensions
"C4",
# flake8-debugger
"T10",
]
ignore = [
# Assigning to `os.environ` doesn't clear the environment.