Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.85 KB

README.md

File metadata and controls

35 lines (25 loc) · 1.85 KB

RoslynRanger

GitHub GitHub Workflow Status (with event) GitHub issues Nuget Maintainability

RoslynRanger is a collection of Roslyn analyzers designed to reduce pull request back and forth and help developers avoid common pitfalls in C# and .NET

Analyzers

Name Diagnostic Id Description
Math.Round FR60001 Recommends explicit rounding strategy

How to?

Change severity level within .editorconfig

Key Format Value
dotnet_diagnostic.{diagnostic_id}.severity Documentation

Examples

# Changes the Math.Round severity to error, preventing compilation
dotnet_diagnostic.FR60001.severity = error
# Disables the Math.Round analyzer
dotnet_diagnostic.FR60001.severity = none