python-peps/.ruff.toml

16 lines
246 B
TOML
Raw Permalink Normal View History

2024-02-08 11:43:54 -05:00
output-format = "full"
target-version = "py39"
[lint]
2023-09-09 12:33:52 -04:00
ignore = [
"E501", # Line too long
]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"PT", # flake8-pytest-style
"W", # pycodestyle warnings
]