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

18 lines
508 B
TOML

select = [
"C4", # flake8-comprehensions
"E", # pycodestyle
"F", # pyflakes
"G", # flake8-logging-format
"I", # isort
"ICN", # flake8-import-conventions
"ISC", # flake8-implicit-str-concat
"PIE", # flake8-pie
"PLE", # pylint errors
"T10", # flake8-debugger
"TCH", # flake8-type-checking
"W", # warnings (mostly whitespace)
]
# Never enforce `E501` (line length violations).
ignore = ["E501", "E731"]