Enable E227 (Missing whitespace around bitwise or shift operator)

This commit is contained in:
Adam Turner 2023-08-15 18:09:18 +01:00
parent cbdc2d85ae
commit 038f9b85f6

View File

@ -307,6 +307,7 @@ select = [
"E224", # Tab after operator
"E225", # Missing whitespace around operator
"E226", # Missing whitespace around arithmetic operator
"E227", # Missing whitespace around bitwise or shift operator
]
[tool.ruff.per-file-ignores]