Skip to content

Commit

Permalink
chore(ruff): disable non-pep585-annotation because we support older v…
Browse files Browse the repository at this point in the history
…ersion of python
  • Loading branch information
Psycojoker committed Oct 3, 2024
1 parent 2935412 commit 54cbee7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,10 @@ ignore = [
# # Ignore complexity
# "C901", "PLR0911", "PLR0912", "PLR0913", "PLR0915",
# Allow the use of assert statements
"S101"
"S101",
# this will try to use non supported yet type annotation like `tuple[stuff]`
# https://docs.astral.sh/ruff/rules/non-pep585-annotation/
"UP006",
]

#[tool.ruff.isort]
Expand Down

0 comments on commit 54cbee7

Please sign in to comment.