Compare commits

..

1 Commits

Author SHA1 Message Date
Acid 374972ae21 modified: .github/workflows/autofix.yml
autofix / autofix (push) Has been cancelled
new file:   .github/workflows/pyproject.toml
2026-05-23 17:06:45 -04:00
2 changed files with 8 additions and 2 deletions
+2 -2
View File
@@ -26,10 +26,10 @@ jobs:
run: uv tool install ruff && uv tool install codespell run: uv tool install ruff && uv tool install codespell
- name: ruff import sort - name: ruff import sort
run: ruff check --select I --fix . run: ruff check --select I --fix --config .github/workflows/pyproject.toml .
- name: ruff format - name: ruff format
run: ruff format . run: ruff format --config .github/workflows/pyproject.toml .
- name: codespell - name: codespell
run: codespell --write-changes run: codespell --write-changes
+6
View File
@@ -0,0 +1,6 @@
[tool.ruff]
lint.extend-ignore = ["Q000"]
line-length = 120
[tool.ruff.format]
quote-style = "preserve"