File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments