fix: only run clang-tidy on .cpp files
This commit is contained in:
parent
452034ef6b
commit
085b228439
2
Justfile
2
Justfile
|
@ -7,7 +7,7 @@ check-format:
|
|||
# the lint ends up running over a large amount of llvm surface area and it takes considerably
|
||||
# longer than the extra build time from using release mode
|
||||
lint: release
|
||||
clang-tidy src/** --load=build/release/libtidyfox.so
|
||||
clang-tidy src/**.cpp --load=build/release/libtidyfox.so
|
||||
|
||||
build:
|
||||
cmake -GNinja -B build/debug \
|
||||
|
|
Loading…
Reference in a new issue