evorepo/ruff.toml
2023-11-03 12:35:59 +01:00

11 lines
245 B
TOML

select = [
"C4", # flake8-comprehensions
"E", # pycodestyle
"F", # pyflakes
"G", # flake8-logging-format
"I", # isort
]
# Never enforce `E501` (line length violations).
ignore = ["E501", "E731"]