Files
python-zaqarclient/.pre-commit-config.yaml
Takashi Kajinami 3483f5a33c Run pyupgrade to clean up Python 2 syntaxes
... because Python 2 is no longer supported.

Change-Id: Ia011f0a320dc4a818a70a5a6137478381e1ab9b9
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-10-12 00:12:20 +09:00

26 lines
711 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: []
exclude: '^(doc|releasenotes|tools)/.*$'
- repo: https://github.com/asottile/pyupgrade
rev: v3.20.0
hooks:
- id: pyupgrade
args: [--py3-only]