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
8 changes: 7 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,15 @@ test = [

[tool.ruff]
line-length = 180
lint.ignore = ["E722"]
exclude = ["scratch"]

[tool.ruff.lint]
# Pin the rule set to the classic ruff default (pyflakes + pycodestyle
# errors) so `ruff check` stays deterministic as new ruff versions widen
# their defaults. E722 (bare except) is used intentionally in a few places.
select = ["E4", "E7", "E9", "F"]
ignore = ["E722"]

[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
Loading