diff options
| author | Sky Leite <sky@leite.dev> | 2023-02-04 00:31:42 -0300 |
|---|---|---|
| committer | Sky Leite <sky@leite.dev> | 2023-02-04 00:31:42 -0300 |
| commit | 897e1773a5c44b8845efb3d2ccb33071be566d51 (patch) | |
| tree | 694e56f285c8bc108b83b284ceab34a43f7d51ca | |
| parent | 4e92d4bfc5652304a6ec0b62e70ab0574ffe159d (diff) | |
| download | decky-loader-897e1773a5c44b8845efb3d2ccb33071be566d51.tar.gz decky-loader-897e1773a5c44b8845efb3d2ccb33071be566d51.zip | |
Disable SyntaxError lint rule due to ruff not supporting pattern matching
| -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. |
