summaryrefslogtreecommitdiffstats
path: root/.pre-commit-config.yaml
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-06-17 10:39:02 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-06-17 11:27:18 -0500
commit576c9e4fe87c5bb38c84b23dcad3529f68eb4a47 (patch)
tree4d1e4d94a7ba496f1ecea42973fc371f0e7ca2d9 /.pre-commit-config.yaml
parent71699e08c9df78b7203fa4ef9cede28e995d6ace (diff)
downloadredot-engine-576c9e4fe87c5bb38c84b23dcad3529f68eb4a47.tar.gz
CI: Add pre-commit hook for `clang-tidy`
• Set to "manual" so it isn't invoked in normal workflow • Modernize `.clang-tidy` file
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r--.pre-commit-config.yaml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index d09ecabe70..cf10acfa79 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -20,6 +20,22 @@ repos:
platform/android/java/lib/src/com/.*
)
+ - repo: https://github.com/pocc/pre-commit-hooks
+ rev: v1.3.5
+ hooks:
+ - id: clang-tidy
+ files: \.(c|h|cpp|hpp|cc|hh|cxx|hxx|m|mm|inc|java|glsl)$
+ args: [--fix, --quiet, --use-color]
+ types_or: [text]
+ exclude: |
+ (?x)^(
+ tests/python_build/.*|
+ platform/android/java/lib/src/com/.*
+ )
+ additional_dependencies: [clang-tidy==18.1.1]
+ require_serial: true
+ stages: [manual] # Not automatically triggered, invoked via `pre-commit run --hook-stage manual clang-tidy`
+
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.4.4
hooks: