As a former Visual Studio user, I'm used to being able to edit my code analysis (e.g. for FxCop and StyleCop) in the IDE. The built in editor makes it really easy.
I'm now using VS Code and trying to do the same thing. As far as I can tell, there don't seem to be any extensions for handling rulesets in VS Code. It looks like my only option is to edit the XML by hand.
Given that the rules are defined like this...
<Rule Id="CA2213" Action="Warning" />
I'm reluctant to go in and edit them manually if I can avoid it.
So:
- Have I missed an extension for VS Code that would help?
- Are there any standalone solutions?
- Perhaps an online editor/generator/wizard?
If not, I'm going to be spending a lot of time on this page.