Files
vault-dash/pyproject.toml
Bu5hm4nn 6bcf78e5df style: format UI files and remove lint excludes
- Remove app/components/ and app/pages/ from ruff/black excludes
- Pre-commit reformatted multi-line strings for consistency
- All files now follow the same code style
2026-04-01 13:55:55 +02:00

24 lines
462 B
TOML

[project]
name = "vault-dash"
version = "1.0.0"
description = "Options hedging dashboard for Lombard loan protection"
requires-python = ">=3.11"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.black]
line-length = 120
target-version = ["py312"]
[tool.mypy]
ignore_missing_imports = true
disable_error_code = ["attr-defined", "misc"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-v"