The author of the ply library no longer intend to create a new release of the ply library[1] and now recommends that users copy the code into own projects[2]. [1] https://github.com/dabeaz/ply/blob/master/README.md#important-notice---october-27-2022 [2] https://github.com/dabeaz/ply/blob/master/README.md#questions-and-answers Change-Id: I1da2ece1ae5486878d88ab4367a0cf4c97147574 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
32 lines
1010 B
YAML
32 lines
1010 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.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: check-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.19.1
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: [--py3-only]
|
|
exclude: ^yaql/_ply
|