Skip to content

Commit

Permalink
Update runchecks.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtificialAmateur committed Feb 10, 2020
1 parent c6b4f92 commit 6281cc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runchecks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ done
echo "Files downloaded!"
echo "Performing checkup:"
clang-tidy --version
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
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

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

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

Expand Down

0 comments on commit 6281cc1

Please sign in to comment.