Enable E203 (Whitespace before '{punctuation}')

This commit is contained in:
Adam Turner 2023-08-15 18:04:09 +01:00
parent 3942691601
commit 000ba5fae5

View File

@ -299,6 +299,7 @@ select = [
"E117", # Over-indented (comment)
"E201", # Whitespace after '{symbol}'
"E202", # Whitespace before '{symbol}'
"E203", # Whitespace before '{punctuation}'
]
[tool.ruff.per-file-ignores]