core: ruff encoding rule preview

This commit is contained in:
Erick Friis 2024-10-08 15:45:21 -07:00
parent b298d0337e
commit 078f73f3f8

View File

@ -73,13 +73,16 @@ select = [
"TID",
"UP",
"W",
"YTT"
"YTT",
"PLW1514",
]
ignore = [
"COM812", # Messes with the formatter
"UP007", # Incompatible with pydantic + Python 3.9
"W293", #
]
preview = true
explicit-preview-rules = true
[tool.coverage.run]
omit = [ "tests/*",]