Roslynator v1.8.3 Release Notes

Release Date: 2018-05-17 // almost 6 years ago
  • Analyzers

    • ➕ Add analyzer RCS1223 (MarkTypeWithDebuggerDisplayAttribute)
    • ➕ Add analyzer RCS1224 (MakeMethodExtensionMethod)
    • ➕ Add analyzer RCS1225 (MakeSealedClass)
    • ➕ Add analyzer RCS1226 (AddParagraphToDocumentationComment)
    • 👌 Improve analyzer RCS1146 (UseConditionalAccess)
      • x == null || x.y can be simplified to x?.y != false
      • x == null || !x.y can be simplified to x?.y != true

    🔨 Refactorings

    • 👌 Improve refactoring RR0051 (FormatExpressionChain)
      • A chain that contains conditional access (x?.y) will be properly formatted.