Files
whereto/.pre-commit-config.yaml
Stephen Finucane 57401dd7e4 pre-commit: Bump dependencies
We also switch to the native hacking plugin.

Change-Id: If6e6d4ad96fdfd1208ece61c101733d81e1725d7
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
2025-09-12 14:17:52 +01:00

25 lines
662 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://opendev.org/openstack/hacking
rev: 7.0.0
hooks:
- id: hacking
additional_dependencies: []
- repo: https://github.com/asottile/pyupgrade
rev: v3.20.0
hooks:
- id: pyupgrade
args: [--py3-only]