Files
osprofiler/.pre-commit-config.yaml
T
Stephen Finucane bd377bc3c2 Add ruff
Change-Id: I71f003998461723241edd7fc16f8a7970ebdc0d0
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
2026-03-08 18:49:01 +00:00

26 lines
709 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.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: []