CI / build-and-scan (push) Successful in 2m43s
- release changelog: commits rendered as description (link), divider lines dropped - gitleaks secret scan and hadolint on every push/PR - ruff lint/format gate (Python repos) with a pytest --cov-fail-under gate - scheduled CRITICAL Trivy failures attempt an apk upgrade rebuild and open a follow-up PR if it clears the finding, instead of just failing red - images also published to ghcr.io/djeex/<repo> - a matching GitHub Release is created on the GitHub mirror, with a notice pointing back to this repo as the source of truth
16 lines
440 B
TOML
16 lines
440 B
TOML
line-length = 100
|
|
|
|
[lint]
|
|
select = ["E", "F", "I", "UP", "B"]
|
|
ignore = ["E501"]
|
|
|
|
[lint.isort]
|
|
# See nvidia-stock-bot's ruff.toml for why this is pinned explicitly rather
|
|
# than left to auto-detection.
|
|
known-first-party = ["src", "build", "gallery"]
|
|
|
|
[lint.per-file-ignores]
|
|
# Real findings (unused var, unused loop var) but app-logic changes,
|
|
# left for the user to decide rather than auto-fixed.
|
|
"src/py/webui/webui.py" = ["F841", "B007"]
|