Files
python-observabilityclient/.pre-commit-config.yaml
Jaromir Wysoglad 4ff4703127 Use pre-commit for pep8 checks
Also include fixes by pyupgrade.

Co-Authored-By: Takashi Kajinami <kajinamit@oss.nttdata.com>
Change-Id: I47b31b369c871ab8457cc7b7e73bf16cf79351e7
Signed-off-by: Jaromir Wysoglad <jwysogla@redhat.com>
2025-10-15 16:27:29 +02:00

37 lines
1.1 KiB
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: trailing-whitespace
# Replaces or checks mixed line ending
- id: mixed-line-ending
args: ['--fix', 'lf']
exclude: '.*\.(svg)$'
# Forbid files which have a UTF-8 byte-order marker
- id: fix-byte-order-marker
# Checks that non-binary executables have a proper shebang
- id: check-executables-have-shebangs
# Check for files that contain merge conflict strings.
- id: check-merge-conflict
# Check for debugger imports and py37+ breakpoint()
# calls in python source
- 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: [--py310-plus]
- repo: https://github.com/openstack/bashate
rev: 2.1.1
hooks:
- id: bashate
args: ['-v', '-iE006']
exclude: '.tox/.*'