1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
---
default_stages: [pre-commit, pre-push]
repos:
#############################################################################
# Meta #
#############################################################################
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
# Identity prints all arguments (files) passed to it; for testing
# - id: identity
#############################################################################
# Core Hooks #
#############################################################################
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-merge-conflict
- id: detect-private-key
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: mixed-line-ending
- id: trailing-whitespace
#############################################################################
# Git #
#############################################################################
- repo: https://github.com/commitizen-tools/commitizen
rev: v4.8.3
hooks:
- id: commitizen
- repo: https://github.com/jorisroovers/gitlint
rev: v0.19.1
hooks:
- id: gitlint
#############################################################################
# GitHub #
#############################################################################
- repo: https://github.com/rhysd/actionlint
rev: v1.7.7
hooks:
- id: actionlint
#############################################################################
# ClangFormat #
#############################################################################
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v20.1.6
hooks:
- id: clang-format
|