Have consistent spacing

This commit is contained in:
Simon Sawicki 2024-02-17 19:09:02 +01:00
parent f7071fac36
commit e8f02202a8
No known key found for this signature in database

View file

@ -150,16 +150,16 @@ line-length = 120
[tool.ruff.lint]
ignore = [
"E402", # module level import not at top of file
"E501", # line too long
"E731", # do not assign a lambda expression, use a def
"E741", # ambiguous variable name
"E402", # module level import not at top of file
"E501", # line too long
"E731", # do not assign a lambda expression, use a def
"E741", # ambiguous variable name
]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
# "I", # import order
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
# "I", # import order
]
[tool.ruff.lint.per-file-ignores]