Files
nvim/pyproject.toml
2025-10-14 23:03:53 +02:00

20 lines
361 B
TOML

# pyproject.toml
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.pyright]
venv = "venv"
venvPath = './'
reportOptionalMemberAccess = 'warning'
reportGeneralTypeIssues = 'warning'
analyzeUnannotatedFunctions = false
executionEnvironments = [
{ root = "./" }
]
[tool.black]
line-length=120