Skip to content

Commit 622c00e

Browse files
committed
docs(CHANGES): Note ruff automated fixes
1 parent fb5a58e commit 622c00e

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

CHANGES

+19
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,25 @@ $ pipx install --suffix=@next 'tmuxp' --pip-args '\--pre' --force
1919

2020
<!-- Maintainers, insert changes / features for the next release here -->
2121

22+
### Development
23+
24+
- Aggressive automated lint fixes via `ruff` (#922)
25+
26+
via ruff v0.3.4, all automated lint fixes, including unsafe and previews were applied:
27+
28+
```sh
29+
ruff check --select ALL . --fix --unsafe-fixes --preview --show-fixes; ruff format .
30+
```
31+
32+
Branches were treated with:
33+
34+
```sh
35+
git rebase \
36+
--strategy-option=theirs \
37+
--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' \
38+
origin/master
39+
```
40+
2241
## tmuxp 1.43.1 (2024-03-24)
2342

2443
### Breaking changes

0 commit comments

Comments
 (0)