Ignore win32 path in linting using clang-tidy
All checks were successful
CI / build-and-analyze (push) Successful in 31s

This commit is contained in:
2026-07-26 10:10:35 +03:00
parent 13a4452758
commit a2f214b09d

View File

@@ -12,7 +12,7 @@ cppcheck:
.PHONY: clang-tidy
clang-tidy:
@echo "Running clang-tidy..."
@for file in $$(find . -name "*.c" -type f); do \
@for file in $$(find . -name "*.c" -type f -not -path "*/win32/*"); do \
clang-tidy "$$file" -- -I. -Iinclude -std=c99; \
done