mirror of
https://github.com/RainerKuemmerle/g2o.git
synced 2026-01-18 21:21:18 +01:00
updates: - [github.com/pre-commit/mirrors-clang-format: v21.1.5 → v21.1.7](https://github.com/pre-commit/mirrors-clang-format/compare/v21.1.5...v21.1.7) - [github.com/psf/black-pre-commit-mirror: 25.11.0 → 25.12.0](https://github.com/psf/black-pre-commit-mirror/compare/25.11.0...25.12.0)
27 lines
636 B
YAML
27 lines
636 B
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v6.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-added-large-files
|
|
|
|
# C++
|
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
rev: v21.1.7
|
|
hooks:
|
|
- id: clang-format
|
|
|
|
# python
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 7.0.0
|
|
hooks:
|
|
- id: isort
|
|
- repo: https://github.com/psf/black-pre-commit-mirror
|
|
rev: 25.12.0
|
|
hooks:
|
|
- id: black
|