Zaws / pyproject.toml
SilentWraith's picture
version 1.0
de68d43
raw
history blame contribute delete
405 Bytes
[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"]