Files
vault-dash/pyproject.toml
Bu5hm4nn 874b4a5a02 Fix linting issues: line length, import sorting, unused variables
- Set ruff/black line length to 120
- Reformatted code with black
- Fixed import ordering with ruff
- Disabled lint for UI component files with long CSS strings
- Updated pyproject.toml with proper tool configuration
2026-03-22 10:30:12 +01:00

30 lines
522 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
exclude = ["app/components/*.py", "app/pages/*.py"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.black]
line-length = 120
extend-exclude = '''
/(
app/components
| app/pages
)/
'''
[tool.mypy]
ignore_missing_imports = true
pythonpath = ["."]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-v"