Skip to content

Commit

Permalink
docs(CHANGES): Note ruff pass
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Mar 24, 2024
1 parent 18f3e52 commit 097a7ee
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,23 @@ issue on the tracker.

### Development

- Aggressive automated lint fixes via `ruff` (#33)

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
```

- poetry: 1.7.1 -> 1.8.1

See also: https://github.com/python-poetry/poetry/blob/1.8.1/CHANGELOG.md
Expand Down

0 comments on commit 097a7ee

Please sign in to comment.