Skip to content

Commit 358fa0f

Browse files
committed
Apply pyproject-fmt 2.20.0 formatting
1 parent 71d61e0 commit 358fa0f

1 file changed

Lines changed: 22 additions & 22 deletions

File tree

pyproject.toml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,28 @@ indent = 4
329329
keep_full_version = true
330330
max_supported_python = "3.13"
331331

332+
[tool.mypy]
333+
strict = true
334+
files = [ "." ]
335+
exclude = [ "build" ]
336+
plugins = [
337+
"pydantic.mypy",
338+
"mypy_strict_kwargs",
339+
]
340+
follow_untyped_imports = true
341+
342+
[tool.pyrefly]
343+
search_path = [
344+
".",
345+
"src",
346+
]
347+
errors.non-exhaustive-match = "error"
348+
349+
[tool.pyright]
350+
enableTypeIgnoreComments = false
351+
reportUnnecessaryTypeIgnoreComment = true
352+
typeCheckingMode = "strict"
353+
332354
[tool.pytest]
333355
xfail_strict = true
334356
log_cli = true
@@ -357,28 +379,6 @@ report.exclude_also = [
357379
report.fail_under = 100
358380
report.show_missing = true
359381

360-
[tool.mypy]
361-
strict = true
362-
files = [ "." ]
363-
exclude = [ "build" ]
364-
plugins = [
365-
"pydantic.mypy",
366-
"mypy_strict_kwargs",
367-
]
368-
follow_untyped_imports = true
369-
370-
[tool.pyrefly]
371-
search_path = [
372-
".",
373-
"src",
374-
]
375-
errors.non-exhaustive-match = "error"
376-
377-
[tool.pyright]
378-
enableTypeIgnoreComments = false
379-
reportUnnecessaryTypeIgnoreComment = true
380-
typeCheckingMode = "strict"
381-
382382
[tool.pydocstringformatter]
383383
write = true
384384
split-summary-body = false

0 commit comments

Comments
 (0)