- Pin Dockerfile --workers 1 - Wire retry.py + circuit breakers into ultimate_scraper tiers - Add Apify actor (apify_actor.py, Dockerfile.apify, .actor/actor.json) - Add async SQLAlchemy support alongside sync db.py - Add 31 HTTP integration tests (tests/test_api_integration.py + test_api_mcp.py) - Add OTLP exporter support in observability.py - Re-enable mypy var-annotated error code; fix annotations - Improve CI workflow (pip cache, install -e .[dev], gitleaks, commitlint, 40% coverage gate)
16 lines
548 B
YAML
16 lines
548 B
YAML
# SPDX-License-Identifier: MIT
|
|
# Copyright (c) 2026 Rug Munch Media LLC
|
|
rules:
|
|
body-leading-blank: [2, always]
|
|
footer-leading-blank: [2, always]
|
|
header-max-length: [2, always, 100]
|
|
scope-case: [2, always, lower-case]
|
|
subject-case: [2, never, [sentence-case, start-case, upper-case]]
|
|
subject-empty: [2, never]
|
|
subject-full-stop: [2, never, "."]
|
|
type-case: [2, always, lower-case]
|
|
type-empty: [2, never]
|
|
type-enum:
|
|
- 2
|
|
- always
|
|
- [feat, fix, docs, style, refactor, perf, test, build, ci, chore, ops, security, revert]
|