PVD/pyproject.toml
2023-04-11 11:12:47 +02:00

24 lines
314 B
TOML

[tool.ruff]
select = ["E", "F", "I"]
line-length = 120
[tool.black]
exclude = '''
/(
\.git
\.venv
)/
'''
include = '\.pyi?$'
line-length = 120
target-version = ["py39"]
[tool.isort]
multi_line_output = 3
profile = "black"
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true