summaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
authorSky Leite <sky@leite.dev>2023-02-04 00:31:42 -0300
committerSky Leite <sky@leite.dev>2023-02-04 00:31:42 -0300
commit897e1773a5c44b8845efb3d2ccb33071be566d51 (patch)
tree694e56f285c8bc108b83b284ceab34a43f7d51ca /backend
parent4e92d4bfc5652304a6ec0b62e70ab0574ffe159d (diff)
downloaddecky-loader-897e1773a5c44b8845efb3d2ccb33071be566d51.tar.gz
decky-loader-897e1773a5c44b8845efb3d2ccb33071be566d51.zip
Disable SyntaxError lint rule due to ruff not supporting pattern matching
Diffstat (limited to 'backend')
-rw-r--r--backend/pyproject.toml6
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.