Josef Pihrt
Josef Pihrt
According to [documentation](https://docs.microsoft.com/en-us/visualstudio/code-quality/use-roslyn-analyzers), chapter "Set rule severity of multiple analyzer rules at once in an EditorConfig file" the best solution is ``` dotnet_analyzer_diagnostic.category-formatting.severity = error ``` which is not exactly...
@marcospgp That's interesting idea. The problem is that would be a breaking change because other may rely on the actual category name.
Version 4.0 introduces possibility to set severity for all Roslynator analyzers ```editorconfig dotnet_analyzer_diagnostic.category-roslynator.severity = error ``` This option works for analyzers that are enabled by default so it is necessary...
It's not perfect with the `enabled_by_default` setting, I agree. But this behavior is defined by Microsoft, see https://docs.microsoft.com/en-us/visualstudio/code-quality/use-roslyn-analyzers?view=vs-2022#set-rule-severity-of-multiple-analyzer-rules-at-once-in-an-editorconfig-file
Do think this issue can be closed now @marcospgp ?
I think that setting severity of all formatting analyzers to "hidden" is not feasible because all "hidden" analyzers would show up in the context menu (Ctrl+.)
Hi, I was not able to reproduce the described behavior. When I invoke "Remove trailing white-space" on line 26 in the file TelemetryProvider.cs the preview window does appear after a...
I will give you feedback shortly.
> The analyzer docs contain the same info you can find inside of visual studio, so clicking to see more details of any RCS number serves no practical purposes at...
It is possible to load IDE.... (and other) analyzers to Roslynator CLI. You have to use option `--analyzer-assemblies`. IDE... analyzer assemblies are located here: ``` C:\Program Files\Microsoft Visual Studio\2019\Community\Common7\IDE\CommonExtensions\Microsoft\ManagedLanguages\VBCSharp\LanguageServices ```...