[tool.ruff] line-length = 100 [tool.ruff.lint] select = ["ALL"] ignore = [ "CPY001", # copyright above code "ANN101", # self annotations "ANN102", # cls annotations "D", # sphinx not support ] [tool.mypy] disallow_untyped_defs = true show_error_codes = true no_implicit_optional = true warn_return_any = true warn_unused_ignores = true python_version = "3.10" plugins = ["pydantic.mypy"]