Skip to content

Commit d89fe4a

Browse files
committed
docs(CHANGES): Note ruff automated fixes
1 parent c5c5ec9 commit d89fe4a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

CHANGES

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,25 @@ $ pip install --user --upgrade --pre libtmux
1515

1616
<!-- To maintainers and contributors: Please add notes for the forthcoming version above -->
1717

18+
### Development
19+
20+
- Aggressive automated lint fixes via `ruff` (#539)
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+
1837
## libtmux 0.35.1 (2024-03-23)
1938

2039
### Bug fix

0 commit comments

Comments
 (0)