Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[CONFIG] Better cppcheck parameters to return error exit on fail
  • Loading branch information
Gonzalo Diaz committed Sep 10, 2024
commit 4bc0c1571dacd739c83c50b376376dc746ee7a6a
10 changes: 7 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,15 @@ lint/yaml:
lint: lint/markdown lint/yaml test/styling test/static

test/static:
cppcheck --enable=all \
--inconclusive \
--library=posix \
cppcheck \
--enable=all \
--std=c++17 \
--library=posix \
--inconclusive \
--inline-suppr \
--error-exitcode=13 \
--suppress=missingIncludeSystem \
--showtime=summary \
src/

test/styling:
Expand Down
Loading