Skip to content

Commit 6281cc1

Browse files
Update runchecks.sh
1 parent c6b4f92 commit 6281cc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runchecks.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ done
2626
echo "Files downloaded!"
2727
echo "Performing checkup:"
2828
clang-tidy --version
29-
clang-tidy **/*.c **/*.h **/*.cpp **/*.hpp **/*.C **/*.cc **/*.CPP **/*.c++ **/*.cp **/*.cxx -checks=boost-*,bugprone-*,performance-*,readability-*,portability-*,modernize-*,clang-analyzer-cplusplus-*,clang-analyzer-*,cppcoreguidelines-* > clang-tidy-report.txt
29+
clang-tidy *.c *.h *.cpp *.hpp *.C *.cc *.CPP *.c++ *.cp *.cxx -checks=boost-*,bugprone-*,performance-*,readability-*,portability-*,modernize-*,clang-analyzer-cplusplus-*,clang-analyzer-*,cppcoreguidelines-* > clang-tidy-report.txt
3030

31-
clang-format --style=llvm -i **/*.c **/*.h **/*.cpp **/*.hpp **/*.C **/*.cc **/*.CPP **/*.c++ **/*.cp **/*.cxx > clang-format-report.txt
31+
clang-format --style=llvm -i *.c *.h *.cpp *.hpp *.C *.cc *.CPP *.c++ *.cp *.cxx > clang-format-report.txt
3232

3333
cppcheck --enable=all --std=c++11 --language=c++ --output-file=cppcheck-report.txt *
3434

0 commit comments

Comments
 (0)