Commit 33f44165 authored by Jan Reimes's avatar Jan Reimes
Browse files

🎨 style(ruff): update ignored rules for test files

parent 1bf8bcb9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -64,8 +64,8 @@ ignore = [
max-locals = 20

[lint.per-file-ignores]
"tests/*.py" = ["S101"]
"tests/**/*.py" = ["S101"]
"tests/*.py" = ["S101", "PLR6301"]
"tests/**/*.py" = ["S101", "PLR6301"]

[lint.pydocstyle]
convention = "google"