How to access the Problems database

Viewed 14

I've got a large codebase with many existing warnings. While we fix them as time allows there are just too many so we decided to ignore most and just prevent new warnings from entering the codebase. Someone wrote a pretty fragile python script that compares the warnings in our dev trunk to warnings in a feature branch to help tease out any new warnings. It seems like I could probably write a vscode extension to do this same sort of thing. (or there might be one already) I'd like to be able to either be able to ignore specific warnings and remove them from the Problems tab (file/line/warning text) without having to modify source code (i.e. no #pragmas or comments) or I'd like to be able to access the list of warnings so I can save out the existing ones and do a diff with the current set. Any pointers?

0 Answers
Related