Files
oslo.metrics/.pre-commit-config.yaml
Stephen Finucane 30e23e7ff5 Add typing
Change-Id: I75d8e9603ae12aa89fe465ce438dd79fa475e48e
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
2025-12-05 16:10:04 +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.14.8
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: []