File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,23 @@ $ pip install --user --upgrade --pre libvcs
17
17
18
18
### Development
19
19
20
+ - Aggressive automated lint fixes via ` ruff ` (#458 )
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
+
20
37
- poetry: 1.7.1 -> 1.8.1
21
38
22
39
See also: https://github.com/python-poetry/poetry/blob/1.8.1/CHANGELOG.md
You can’t perform that action at this time.
0 commit comments