Files
peps/.ruff.toml
2025-09-15 14:22:27 +01:00

16 lines
247 B
TOML

output-format = "full"
target-version = "py310"
[lint]
ignore = [
"E501", # Line too long
]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"PT", # flake8-pytest-style
"W", # pycodestyle warnings
]