Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.22
rev: v0.16.0
hooks:
- id: ruff
name: ruff lint
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,14 @@ ignore = [
"E501",
# ignore imports which are not at the top of a module
"PLC0415",
# Too many branches
"PLR0912",
# Too many arguments in function definition
"PLR0913",
# Too many not-keyword-only arguments,
"PLR0917",
# Magic value used in comparison
"PLR2004",
# Too many branches
"PLR0912",
]

[tool.hatch.build]
Expand Down
Loading