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] [tool.ruff.lint]
ignore = [ ignore = [
"E402", # module level import not at top of file "E402", # module level import not at top of file
"E501", # line too long "E501", # line too long
"E731", # do not assign a lambda expression, use a def "E731", # do not assign a lambda expression, use a def
"E741", # ambiguous variable name "E741", # ambiguous variable name
] ]
select = [ select = [
"E", # pycodestyle errors "E", # pycodestyle errors
"W", # pycodestyle warnings "W", # pycodestyle warnings
"F", # pyflakes "F", # pyflakes
# "I", # import order # "I", # import order
] ]
[tool.ruff.lint.per-file-ignores] [tool.ruff.lint.per-file-ignores]