diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-06-17 10:39:02 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-06-17 11:27:18 -0500 |
commit | 576c9e4fe87c5bb38c84b23dcad3529f68eb4a47 (patch) | |
tree | 4d1e4d94a7ba496f1ecea42973fc371f0e7ca2d9 /.pre-commit-config.yaml | |
parent | 71699e08c9df78b7203fa4ef9cede28e995d6ace (diff) | |
download | redot-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.yaml | 16 |
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: |