Skip to content

Commit

Permalink
disable remaining failing ruff lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Nov 29, 2023
1 parent d5a10dc commit 4dbf3db
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ ignore = [
"S101",
# `subprocess` call: check for execution of untrusted input
"S603",

# FIXME? Maybe we should enable these?
"PLR0913", # Too many arguments in function definition (7 > 5)
"PLR2004", # Magic value used in comparison, consider replacing 4 with a constant variable
"FBT002", # Boolean default positional argument in function definition
]

[tool.mypy]
Expand Down

0 comments on commit 4dbf3db

Please sign in to comment.