ignore ruff A005 for now

This commit is contained in:
Jörg Thalheim
2025-01-14 15:32:13 +01:00
parent 3bcbc8fa3d
commit 40e23f1bdb

View File

@@ -46,6 +46,9 @@ lint.select = [
]
lint.ignore = [
"A003",
# A005 Module `inspect` shadows a Python standard-library module
# We might asctually wants to fix this.
"A005",
"ANN401",
"TRY400",
"E402",