Reputation: 3182
Annoying crap. I am using VS 2012; I have ReSharper and StyleCop (SC) installed. If a StyleCop warning is enabled on a line of code, I can't get rid of it unless I fix it. I want to handle the SC warning later and see the intellisense tooltip on one of the class references defined. How the hell do I do this? I do NOT want to temporily disable SC, I only want to tell it to "shut up" for a second so I can view intellisense.
Upvotes: 3
Views: 415
Reputation: 1141
Using Resharper you can quickly disable the analysis of the current file (including the StyleCop analysis) with the following keyboard shortcut
Ctrl + Shift + Alt + 8
Check the intellisense tooltip and after that re-activate the analysis again using the same shortcut.
Upvotes: 4