mirror of
https://github.com/pybind/pybind11_abseil.git
synced 2026-06-04 13:54:22 +08:00
This is to help with whitespace cleanup in the cmake files currently under development under https://github.com/pybind/pybind11_abseil/pull/7 PiperOrigin-RevId: 556026304
51 lines
1.2 KiB
YAML
51 lines
1.2 KiB
YAML
######################################################################
|
|
# PLEASE KEEP IN SYNC WITH pybind11_protobuf/.pre-commit-config.yaml #
|
|
######################################################################
|
|
#
|
|
# To use:
|
|
#
|
|
# pre-commit run -a
|
|
#
|
|
# Or:
|
|
#
|
|
# pre-commit install # (runs every time you commit in git)
|
|
#
|
|
# To update this file:
|
|
#
|
|
# pre-commit autoupdate
|
|
#
|
|
# See https://github.com/pre-commit/pre-commit
|
|
|
|
|
|
ci:
|
|
autoupdate_commit_msg: "chore(deps): update pre-commit hooks"
|
|
autofix_commit_msg: "style: pre-commit fixes"
|
|
autoupdate_schedule: quarterly
|
|
|
|
repos:
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: "v4.4.0"
|
|
hooks:
|
|
- id: check-added-large-files
|
|
- id: check-case-conflict
|
|
- id: check-docstring-first
|
|
- id: check-merge-conflict
|
|
- id: check-symlinks
|
|
- id: check-toml
|
|
- id: check-yaml
|
|
- id: debug-statements
|
|
- id: end-of-file-fixer
|
|
- id: mixed-line-ending
|
|
- id: requirements-txt-fixer
|
|
- id: trailing-whitespace
|
|
exclude: \.patch?$
|
|
|
|
- repo: https://github.com/cheshirekow/cmake-format-precommit
|
|
rev: "v0.6.13"
|
|
hooks:
|
|
- id: cmake-format
|
|
additional_dependencies: [pyyaml]
|
|
types: [file]
|
|
files: (\.cmake|CMakeLists.txt)(.in)?$
|