Open silvioboehme opened 4 years ago
I will look at it.
It is important to mention that Roslynator does not interact with .editorconfig but it uses Roslyn API that allows to obtain effective severity for each analyzer. Which implies that theoretically it could be bug in Roslyn.
I also found a problem trying to disable a fade out analyzer through editorconfig. That is not working and the fading is still visible:
dotnet_diagnostic.RCS1058.severity = none
dotnet_diagnostic.RCS1058FadeOut.severity = none
@caiolmd "FadeOut" analyzers are marked with NotConfigurable tag which mean that they "cannot be suppressed or filtered or have its severity changed".
Are you trying to use RCS1058 without "fade out" effect? If that is the case then that is not possible.
Are you trying to use RCS1058 without "fade out" effect? If that is the case then that is not possible.
@JosefPihrt No, I'm trying to disable RCS1058, which I did, but the "fade out" is still there. RCS1058 is disable but RCS1058FadeOut is not. I'm on VSCode with Omnisharp.
Hey, I have experienced a similar fade out issue - when disabling the analyzer the fade out is still applied:
But only for the switch statement, if behaves differently:
Product and Version Used: VS2019 (16.6.1)