eberthold / SteroidsVS

Visual Studio Extension
https://marketplace.visualstudio.com/items?itemName=eberthold.SteroidsVS
MIT License
25 stars 2 forks source link

Configure minimum severity #33

Open thomasneubergersdx opened 1 year ago

thomasneubergersdx commented 1 year ago

Hi Erik,

this is a cool extension. It would be even better if one could configure a minimum severity for warnings to show. This way I could hide warnings of hint severity (like image) as long as I'm not really interested in those.

montoner0 commented 1 year ago

I believe this could be easily configured by standard means through Ctrl-<dot> image

eberthold commented 1 year ago

Hi, thanks for your feedback. I'm happy that you like the extension.

Just for clarification: Do you want to hide all messages of a specific severity, like all messages with information level, or do you want to hide only specific messages like RCS1037 in particular?

For specific messages it should be sufficient to configure those messages by .editorconfig file, .ruleset file, [SupressMessage] or pragma disable ... to silent or none.

If you want to hide all messages of a specific severity it should be fairly easy to implement a switch to get it synchronized with the Visual Studio Error List, which currently acts as the source for the message display image

Please let me know what your use case is, and I will have a look at it.