We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b95f4c commit 339a93dCopy full SHA for 339a93d
1 file changed
CHANGES
@@ -17,6 +17,23 @@ $ pip install --user --upgrade --pre libvcs
17
18
### Development
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
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
37
- poetry: 1.7.1 -> 1.8.1
38
39
See also: https://github.com/python-poetry/poetry/blob/1.8.1/CHANGELOG.md
0 commit comments