ci: Rewrite relative readme URLs before release (#52)

This commit is contained in:
Mike A.
2024-08-01 20:41:28 +02:00
parent a25ca28f9f
commit 6dddb5f77e
3 changed files with 54 additions and 0 deletions

View File

@@ -47,6 +47,7 @@ ignore = [
"D105", # docstrings in magic methods
"S101", # assert statements
"S603", # false-positive subprocess call (https://github.com/astral-sh/ruff/issues/4045)
"PLR2004", # "magic" values >.>
"FBT", # boolean "traps"
@@ -61,6 +62,10 @@ line-length = 100
"D", # documentation
"INP001", # namespacing
]
"scripts/*" = [
"T201", # use of "print"
"D", # documentation
]
[build-system]
requires = ["poetry-core"]