Commit 98e34284 authored by Jan Reimes's avatar Jan Reimes
Browse files

chore(lint): add per-file ignores for test files in ruff configuration

* Added specific ignores for S101 in test files
* Enhances linting configuration for better test file handling
parent b640597b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -63,6 +63,10 @@ ignore = [
[lint.pylint]
max-locals = 20

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

[lint.pydocstyle]
convention = "google"