File tree 1 file changed +19
-0
lines changed
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
19
19
20
20
<!-- Maintainers, insert changes / features for the next release here -->
21
21
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
+
22
41
## tmuxp 1.43.1 (2024-03-24)
23
42
24
43
### Breaking changes
You can’t perform that action at this time.
0 commit comments