2022-08-11 20:56:08 +02:00
|
|
|
# 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
|
2024-04-19 20:56:21 +02:00
|
|
|
rev: v4.6.0
|
2022-08-11 20:56:08 +02:00
|
|
|
hooks:
|
|
|
|
- id: trailing-whitespace
|
|
|
|
files: ^.*\.cmake|CMakeLists\.txt$
|
|
|
|
- id: end-of-file-fixer
|
|
|
|
files: ^.*\.cmake|CMakeLists\.txt$
|
|
|
|
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
2024-04-19 20:56:21 +02:00
|
|
|
rev: v18.1.3
|
2022-08-11 20:56:08 +02:00
|
|
|
hooks:
|
|
|
|
- id: clang-format
|
|
|
|
types_or: [c++, c]
|