Skip to content

Commit

Permalink
Suppress XML doc warnings for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jjonescz committed May 23, 2022
1 parent da13586 commit c02c136
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .globalconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# See https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/configuration-files#global-analyzerconfig.

is_global = true

# CA1062: Validate arguments of public methods
dotnet_diagnostic.CA1062.severity = silent

# CS1573: Parameter 'parameter' has no matching param tag in the XML comment for
# 'parameter' (but other parameters do)
dotnet_diagnostic.CS1573.severity = silent

# CS1591: Missing XML comment for publicly visible type or member
# 'Type_or_Member'
dotnet_diagnostic.CS1591.severity = silent

0 comments on commit c02c136

Please sign in to comment.