40 lines
835 B
YAML
40 lines
835 B
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
|
|
|
|
repos:
|
|
# Standard hooks
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.1.0
|
|
hooks:
|
|
- id: check-case-conflict
|
|
- id: check-docstring-first
|
|
- id: check-executables-have-shebangs
|
|
- id: check-merge-conflict
|
|
- id: check-symlinks
|
|
- id: check-yaml
|
|
args: ["--allow-multiple-documents"]
|
|
- id: debug-statements
|
|
- id: mixed-line-ending
|
|
- id: sort-simple-yaml
|
|
- id: file-contents-sorter
|
|
- id: trailing-whitespace
|
|
exclude: .*.(xml?)|(svg?)
|
|
|
|
# C++ formatting
|
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
rev: v13.0.1
|
|
hooks:
|
|
- id: clang-format
|
|
types_or: [c++, c]
|