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 @@ -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.44.0 (2024-03-24)
2342
2443### Breaking changes
You can’t perform that action at this time.
0 commit comments