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
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,10 @@ asyncio_mode = "auto"
[tool.ruff]
line-length = 100
target-version = "py311"

[tool.ruff.lint]
# Selected explicitly rather than left to ruff's default. Ruff 0.16 expanded that default from
# 59 rules to 413, so a patch-range bump of the ruff pin silently became a lint policy change
# and failed CI on unmodified code. Pinning the set keeps `ruff check` reproducible across
# upgrades; widening it is a deliberate edit here, with the resulting fixes in the same PR.
select = ["E4", "E7", "E9", "F"]