Files
microversion-parse/.pre-commit-config.yaml
Stephen Finucane 423b481e2d pre-commit: Bump versions
We also enable ruff's E5 rules in the process.

Change-Id: Ibbc272feeae2ab8001f47b92e7710d22ad483953
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
2025-11-19 12:37:48 +00:00

27 lines
758 B
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: mixed-line-ending
args: ['--fix', 'lf']
exclude: '.*\.(svg)$'
- id: fix-byte-order-marker
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: debug-statements
- id: check-yaml
files: .*\.(yaml|yml)$
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.5
hooks:
- id: ruff-check
args: ['--fix', '--unsafe-fixes']
- id: ruff-format
- repo: https://opendev.org/openstack/hacking
rev: 8.0.0
hooks:
- id: hacking
additional_dependencies: []
exclude: '^(doc|releasenotes|tools)/.*$'