We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac0aed8 commit 53a5238Copy full SHA for 53a5238
.clang-tidy
@@ -22,7 +22,7 @@ Checks: >
22
-readability-identifier-length
23
24
WarningsAsErrors: ''
25
-HeaderFilterRegex: '.*(Common|SparseBindingTest|Tests|VmaUsage|VulkanSample)\.(cpp|h)$|.*vk_mem_alloc\.h$'
+HeaderFilterRegex: '.*\.(cpp|h)$'
26
FormatStyle: file
27
AnalyzeTemporaryDtors: true
28
CheckOptions:
.github/workflows/static_code_analysis.yaml
@@ -42,4 +42,4 @@ jobs:
42
43
- name: Run Clang-Tidy
44
run: |
45
- find . -path ./build -prune -o -name '*.cpp' -print | xargs clang-tidy-15 -p build || true
+ find . -path ./build -prune -o \( -name '*.cpp' -o -name '*.h' \) -print | xargs clang-tidy-15 -p build || true
0 commit comments