Disable SyntaxError lint rule due to ruff not supporting pattern matching

This commit is contained in:
Sky Leite
2023-02-04 00:31:42 -03:00
parent 4e92d4bfc5
commit 897e1773a5
+5 -1
View File
@@ -4,7 +4,11 @@ max-line-length = 88
[tool.ruff]
ignore = [
# Ignore line length check and let Black handle it
"E501"
"E501",
# Ignore SyntaxError due to ruff not supporting pattern matching
# https://github.com/charliermarsh/ruff/issues/282
"E999",
]
# Assume Python 3.10.