Files
oslotest/.pre-commit-config.yaml
Stephen Finucane b8e986183f pre-commit: Bump versions
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
Change-Id: I186ab8fccec7c2843d40c4d217504fe944ff7791
2026-06-24 11:15:42 +01:00

26 lines
710 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.15.19
hooks:
- id: ruff-check
args: ['--fix', '--unsafe-fixes']
- id: ruff-format
- repo: https://opendev.org/openstack/hacking
rev: 8.1.0
hooks:
- id: hacking
additional_dependencies: []