chore: update ruff ignore rules for PLC0415, PT030, PLW0108

This commit is contained in:
Mike 2026-05-22 16:22:29 -07:00
parent 8339249381
commit 15f1d3de3b

View file

@ -121,8 +121,10 @@ allow-multiline = false
"tests/*" = [
"INP001", # "Add an __init__.py"
"PLR2004", # "Magic value used in comparison"
"PLW0108", # "Lambda may be unnecessary" - used with assertRaises
"PT009", # "Use a regular assert instead of unittest-style"
"PT027", # "Use pytest.raises instead of unittest-style"
"PT030", # "pytest.warns match parameter" - broad warnings intentional in tests
"S101", # "Use of assert detected"
"SLF001" # "Private member accessed"
]