Josef Pihrt
Josef Pihrt
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...
@caiolmd "FadeOut" analyzers are marked with [NotConfigurable](https://github.com/dotnet/roslyn/blob/6ab11eedb13ef7c8d41f39313fd60c6622e48ba0/src/Compilers/Core/Portable/Diagnostic/WellKnownDiagnosticTags.cs#L41) tag which mean that they "cannot be suppressed or filtered or have its severity changed". Are you trying to use RCS1058 without "fade...
Possible duplicate of #440
Thanks for you appreciation and sorry for the later answer. I think thank it's possible that the code with the fix can run slower if the collection is List or...
This is a rare case that will be hard (or impossible) to detect during code analysis. I think it is reasonable to suppress this diagnostic one by one. Example: ```cs...
Documentation related to Roslynator is here: https://github.com/JosefPihrt/Roslynator/blob/master/docs/AnalyzersVsRefactorings.md https://github.com/JosefPihrt/Roslynator/blob/master/docs/HowToConfigureAnalyzers.md https://github.com/JosefPihrt/Roslynator/blob/master/docs/HowToConfigureRulesetFile.md https://github.com/JosefPihrt/Roslynator/blob/master/docs/HowToCustomizeRulesForProject.md List of analyzers is here ('None' means that the analyzer is disabled by default): https://github.com/JosefPihrt/Roslynator/tree/master/src/Analyzers https://github.com/JosefPihrt/Roslynator/tree/master/src/CodeAnalysis.Analyzers https://github.com/JosefPihrt/Roslynator/tree/master/src/Formatting.Analyzers Documentation related to...
Hi, I'm sorry I don't understand what you are suggesting. Could describe your proposal more in detail?
You can use [Roslynator CLI](https://www.nuget.org/packages/Roslynator.CommandLine/) to analyze your solution. You will see diagnostics in the console/output. CLI supports filtering by projects. It does not support filtering by files, but it...
@xtqqczze thanks for the tip!
#### 1) Remove `continue` statement Could you clarify when do you want to remove `continue` (ideally please provide code before and after)? #### 2) Removal of pointless/dead code There is...