Add ruff and mypy to dev dependencies with configuration in pyproject.toml. Add a lint CI job that runs ruff check, ruff format --check, and mypy. Auto-fix import sorting and formatting across the codebase. Exclude alembic/versions from linting (auto-generated migrations). Ignore B008 (FastAPI Depends pattern) and RUF001 (unicode in user-facing strings). 21 ruff lint errors and 50 mypy errors remain for manual review. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
779 B
Python
26 lines
779 B
Python
from datetime import UTC, datetime
|
|
|
|
from sqlalchemy import MetaData, event
|
|
from sqlalchemy.orm import DeclarativeBase
|
|
|
|
NAMING_CONVENTION = {
|
|
"ix": "ix_%(column_0_label)s",
|
|
"uq": "uq_%(table_name)s_%(column_0_name)s",
|
|
"ck": "ck_%(table_name)s_%(constraint_name)s",
|
|
"fk": "fk_%(table_name)s_%(column_0_name)s_%(referred_table_name)s",
|
|
"pk": "pk_%(table_name)s",
|
|
}
|
|
|
|
|
|
class Base(DeclarativeBase):
|
|
metadata = MetaData(naming_convention=NAMING_CONVENTION)
|
|
|
|
|
|
@event.listens_for(Base, "before_update", propagate=True)
|
|
def _set_updated_at_before_update(_mapper, _connection, target) -> None:
|
|
# Keep audit timestamps current for ORM-managed updates.
|
|
if hasattr(target, "updated_at"):
|
|
target.updated_at = datetime.now(UTC)
|
|
|
|
|
|
metadata = Base.metadata
|