mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-07-11 07:52:03 +00:00
Disable SyntaxError lint rule due to ruff not supporting pattern matching
This commit is contained in:
@@ -4,7 +4,11 @@ max-line-length = 88
|
|||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
ignore = [
|
ignore = [
|
||||||
# Ignore line length check and let Black handle it
|
# 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.
|
# Assume Python 3.10.
|
||||||
|
|||||||
Reference in New Issue
Block a user