Skip to content

Commit

Permalink
reverting code checker change
Browse files Browse the repository at this point in the history
  • Loading branch information
cvvergara committed Aug 12, 2024
1 parent 40bd7b1 commit b62f4c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/scripts/code_checker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ if test -z "$DIRECTORY"; then
echo "--------------------"
echo "------ *.c ------"
echo "--------------------"
code_linter/cpplint/cpplint.py --extensions=c --linelength=120 --filter=-readability/casting,-whitespace/newline src/*/*.c
code_linter/cpplint/cpplint.py --extensions=c --linelength=120 --filter=-readability/casting src/*/*.c
echo "--------------------"
echo "------ *.cpp ------"
echo "--------------------"
code_linter/cpplint/cpplint.py --filter=-runtime/references,-whitespace/indent_namespace,-whitespace/newline --linelength=120 src/*/*.cpp
code_linter/cpplint/cpplint.py --filter=-runtime/references,-whitespace/indent_namespace --linelength=120 src/*/*.cpp
echo "--------------------"
echo "------ HEADERS ------"
echo "--------------------"
Expand Down

0 comments on commit b62f4c2

Please sign in to comment.