You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I would like to know if there's a way with the add-in to export the list of suppressions that are configured within visual studio to a file.
That would help me to setup a CI pipeline that uses the same suppressions as the add-in, otherwise issues will be correctly ignored in my IDE, but the CI pipeline will trigger them and it would be a bit annoying to have to create and maintain this file manually...
The text was updated successfully, but these errors were encountered:
Well, it ideally would be in the form of a cppcheck suppression file as described in the cppcheck manual, page 17 (I'm referring to this document: https://cppcheck.sourceforge.io/manual.pdf ).
I'm not sure how the global/solution/project distinction would work, but at the moment, for my use case at least, I'm only interested in global settings anyway.
This way, I configure in visual studio to suppress the warnings I don't need, and if I'm able to export to a file these suppressions, I'll be able to feed the same file to cppcheck with --suppressions-list in my CI pipeline. The CI will then stop raising "false positives" that I ignored in the IDE on purpose.
Hi,
I would like to know if there's a way with the add-in to export the list of suppressions that are configured within visual studio to a file.
That would help me to setup a CI pipeline that uses the same suppressions as the add-in, otherwise issues will be correctly ignored in my IDE, but the CI pipeline will trigger them and it would be a bit annoying to have to create and maintain this file manually...
The text was updated successfully, but these errors were encountered: