_Maintenance only, no bug fixes or new features_
Development
- Aggressive automated lint fixes via `ruff` (442)
via ruff v0.3.4, all automated lint fixes, including unsafe and previews were applied:
sh
ruff check --select ALL . --fix --unsafe-fixes --preview --show-fixes; ruff format .
Branches were treated with:
sh
git rebase \
--strategy-option=theirs \
--exec 'poetry run ruff check --select ALL . --fix --unsafe-fixes --preview --show-fixes; poetry run ruff format .; git add src tests; git commit --amend --no-edit' \
origin/master