ruff/check↔format

This commit is contained in:
Marc Beninca 2025-02-01 00:23:47 +01:00
parent 98adf0b2a1
commit 2635d74f91
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F
2 changed files with 2 additions and 1 deletions

View file

@ -41,5 +41,5 @@ style = "sphinx"
line-length = 80
[tool.ruff.lint]
ignore = ["D203", "D213"]
ignore = ["D203", "D213", "COM812", "ISC001"]
select = ["ALL"]

View file

@ -14,6 +14,7 @@ rwx_ruff_check() {
ruff check \
--select "ALL" \
--ignore "D203,D213" \
--ignore "COM812,ISC001" \
"${path}"
}