Enable E111 (Indentation is not a multiple of {indent_size})

This commit is contained in:
Adam Turner 2023-08-15 17:51:27 +01:00
parent 50d84333e4
commit db82374d3a

View File

@ -289,6 +289,8 @@ external = [ # Whitelist for RUF100 unknown code warnings
] ]
select = [ select = [
"ALL", # every check supported by Ruff "ALL", # every check supported by Ruff
# nursery rules
"E111", # Indentation is not a multiple of {indent_size}
] ]
[tool.ruff.per-file-ignores] [tool.ruff.per-file-ignores]