diff options
Diffstat (limited to 'backend')
| -rw-r--r-- | backend/pyproject.toml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/backend/pyproject.toml b/backend/pyproject.toml index dd5a6c03..965df739 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -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. |
