advent-of-code/ruff.toml

9 lines
205 B
TOML
Raw Normal View History

[lint]
extend-select = [
"I", # Import sorting is a lint check
]
ignore = [
"E731", # Assigning lambdas is sometimes more readable
"E741", # Ambiguous variable names are good enough actually
]