Skip to content
Merged
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
1 change: 1 addition & 0 deletions ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ select = [
ignore = [
"E501", # line length enforced by formatter
"PLR0913", # argparse builders legitimately take > 7 args
"PLR0917", # same rationale as PLR0913; download_file's positional signature is public API
"PLR2004", # magic numbers are allowed in tests / CLI
"PLR0912", # branch count is bounded by CLAUDE.md (15) not ruff's default
"PLR0915", # statement count same
Expand Down
Loading