nvim/pyproject.toml

20 lines
363 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