paper-dynasty-database/ruff.toml
Cal Corum 926c18af70 feat(WP-01): add evolution Peewee models
Add EvolutionTrack, EvolutionCardState, EvolutionTierBoost, and
EvolutionCosmetic models to db_engine.py with composite unique indexes
and create_tables blocks. Also includes PlayerSeasonStats (WP-02).

Add ruff.toml to suppress pre-existing F403/F405 from intentional
`from peewee import *` wildcard import pattern in db_engine.py.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-17 19:32:03 -05:00

5 lines
229 B
TOML

[lint]
# F403/F405: peewee ORM uses `from peewee import *` intentionally in db_engine.py
# These are suppressed per-file to avoid breaking the wildcard import pattern.
per-file-ignores = { "app/db_engine.py" = ["F403", "F405"] }