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", "TID",
"UP", "UP",
"W", "W",
"YTT" "YTT",
"PLW1514",
] ]
ignore = [ ignore = [
"COM812", # Messes with the formatter "COM812", # Messes with the formatter
"UP007", # Incompatible with pydantic + Python 3.9 "UP007", # Incompatible with pydantic + Python 3.9
"W293", # "W293", #
] ]
preview = true
explicit-preview-rules = true
[tool.coverage.run] [tool.coverage.run]
omit = [ "tests/*",] omit = [ "tests/*",]