Files
taskflow/.pre-commit-config.yaml
Takashi Kajinami 67b67db570 pre-commit: Bump versions
Change-Id: I1cf4e526d6cdc0af931a1fa9372b5dd0036440dc
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2026-01-24 23:55:32 +09:00

26 lines
713 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: 8.0.0
hooks:
- id: hacking
additional_dependencies: []
exclude: '^(doc|releasenotes|tools)/.*$'
- repo: https://github.com/asottile/pyupgrade
rev: v3.21.2
hooks:
- id: pyupgrade
args: [--py310-plus]