rpmbuilder/.pre-commit-config.yaml
Ben Vincent a0b8d8b806
All checks were successful
Build / build-9 (pull_request) Successful in 14s
Build / build-8 (pull_request) Successful in 17s
feat: update pre-commit with more tests
- autofix the end-of-file
- report trailing whitespace
2026-03-01 23:43:31 +11:00

29 lines
717 B
YAML

---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
args: [--allow-multiple-documents]
- id: check-merge-conflict
- id: detect-private-key
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.37.1
hooks:
- id: yamllint
args:
[
"-d {extends: relaxed, rules: {line-length: disable}}",
"-s",
]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.7
hooks:
# Run the linter.
- id: ruff-check
args: [--fix]
# Run the formatter.
- id: ruff-format