mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-24 11:51:08 -05:00
33 lines
915 B
TOML
33 lines
915 B
TOML
[project]
|
|
name = "thrillwiki-workspace"
|
|
version = "0.1.0"
|
|
description = "ThrillWiki - The Ultimate Theme Park Database"
|
|
requires-python = ">=3.13"
|
|
readme = "docs/README.md"
|
|
|
|
[tool.uv.workspace]
|
|
members = ["backend"]
|
|
|
|
# =============================================================================
|
|
# Ruff Configuration (shared across workspace)
|
|
# =============================================================================
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
target-version = "py313"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "W", "I", "UP", "B", "C4", "SIM"]
|
|
ignore = ["E501"]
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = ["apps", "config", "thrillwiki"]
|
|
|
|
# =============================================================================
|
|
# Black Configuration (shared across workspace)
|
|
# =============================================================================
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
target-version = ["py313"]
|