Skip to content

Commit 339a93d

Browse files
committed
docs(CHANGES): Note ruff automated fixes
1 parent 6b95f4c commit 339a93d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

CHANGES

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,23 @@ $ pip install --user --upgrade --pre libvcs
1717

1818
### Development
1919

20+
- Aggressive automated lint fixes via `ruff` (#458)
21+
22+
via ruff v0.3.4, all automated lint fixes, including unsafe and previews were applied:
23+
24+
```sh
25+
ruff check --select ALL . --fix --unsafe-fixes --preview --show-fixes; ruff format .
26+
```
27+
28+
Branches were treated with:
29+
30+
```sh
31+
git rebase \
32+
--strategy-option=theirs \
33+
--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' \
34+
origin/master
35+
```
36+
2037
- poetry: 1.7.1 -> 1.8.1
2138

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

0 commit comments

Comments
 (0)