REVA-QCAV/pyproject.toml

24 lines
316 B
TOML

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