File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -329,6 +329,28 @@ indent = 4
329329keep_full_version = true
330330max_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 ]
333355xfail_strict = true
334356log_cli = true
@@ -357,28 +379,6 @@ report.exclude_also = [
357379report.fail_under = 100
358380report.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 ]
383383write = true
384384split-summary-body = false
You can’t perform that action at this time.
0 commit comments