Skip to content

Commit 59461ea

Browse files
committed
Updated ignore list
1 parent 8614c57 commit 59461ea

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ ignore = [
8787
"COM812", # Allow f-strings with single curly braces
8888
"D203", # 1 blank line required before class docstring (conflicts with D211)
8989
"D212", # Multi-line docstring summary should start at the first line
90+
"E501",
9091
]
9192

9293
[tool.ruff.lint.extend-per-file-ignores]
@@ -108,5 +109,6 @@ exclude_dirs = ["app/tests"]
108109

109110
[tool.vulture]
110111
exclude = ["backend/app/alembic/"]
111-
ignore_decorators = ["@router.get", "@router.post", "@router.put", "@router.delete", "@router.patch", "@model_validator"]
112+
ignore_decorators = ["@router.get", "@router.post", "@router.put", "@router.delete", "@router.patch",
113+
"@model_validator", "@field_validator"]
112114
ignore_names = ["model_config", "return_value"]

0 commit comments

Comments
 (0)