9 lines
205 B
TOML
9 lines
205 B
TOML
|
[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
|
||
|
]
|