Skip to content

Commit

Permalink
Move possible nullref warnings to suggestions (#227)
Browse files Browse the repository at this point in the history
While we should take care in this, having 400+ warnings about it is not helpful in seeing issues in new code. Once we start removing these, it can be graded back up to warning.
  • Loading branch information
harbingerofme authored Nov 5, 2020
1 parent 7e051bc commit c73ea41
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,9 @@ dotnet_diagnostic.CS1591.severity = suggestion

# IDE0032: Use auto property
dotnet_style_prefer_auto_properties = true:silent

# CS8604: Possible null reference argument.
dotnet_diagnostic.CS8604.severity = suggestion

# CS8602: Dereference of a possibly null reference.
dotnet_diagnostic.CS8602.severity = suggestion

0 comments on commit c73ea41

Please sign in to comment.