Zaws / pyproject.toml
SilentWraith's picture
Initial commit
6f8bc75
raw
history blame
331 Bytes
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"CPY001", # copyright above code
"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
exclude = ["tests"]
python_version = "3.10"