Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,9 @@ configuration:
[pytest]
cppcheck_args =
--enable=warning,style,performance,portability
--suppress=missingIncludeSystem
--suppress=normalCheckLevelMaxBranches
--check-level=exhaustive
```
Comment on lines 59 to 63
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description says this change only replaces --suppress=normalCheckLevelMaxBranches with --check-level=exhaustive, but this hunk also removes the --suppress=missingIncludeSystem example and the explanatory paragraph about both suppressions. If removing missingIncludeSystem guidance is intentional, please update the PR description (and consider adding a brief note on how to handle missing system headers); otherwise restore the removed suppress/example text.

Copilot uses AI. Check for mistakes.

`missingIncludeSystem` suppresses noise about system headers that aren't
available to cppcheck. `normalCheckLevelMaxBranches` suppresses an
informational message that cppcheck emits on complex files and that would
otherwise be reported as a failure.

### `cppcheck_extensions`

File extensions to collect. Default: `.c .cpp`.
Expand Down
Loading