PVD/pyproject.toml

25 lines
348 B
TOML
Raw Permalink Normal View History

2023-04-11 09:12:47 +00:00
[tool.ruff]
2023-04-11 09:25:53 +00:00
ignore-init-module-imports = true
2023-04-11 09:12:47 +00:00
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