Skip to content
Closed
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 .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ ignore = [
"PLR6301", # Allow class methods that don't use 'self' (otherwise noisy)
"RUF022", # Allow unsorted __all__ (sometimes useful for grouping by type with pdoc)
"S", # flake8-bandit (noisy, security related)
"SIM910", # Allow "None" as second argument to Dict.get(). "Explicit is better than implicit."
# "SIM910", # Allow "None" as second argument to Dict.get() (now enforced)
"TC006", # Require quoted type names in cast() calls
"TD002", # Require author for TODOs
"ASYNC1", # flake8-trio (opinionated, noisy)
Expand Down
Loading