Skip to content

Commit c02c136

Browse files
committed
Suppress XML doc warnings for now
1 parent da13586 commit c02c136

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.globalconfig

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# See https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/configuration-files#global-analyzerconfig.
2+
3+
is_global = true
4+
5+
# CA1062: Validate arguments of public methods
6+
dotnet_diagnostic.CA1062.severity = silent
7+
8+
# CS1573: Parameter 'parameter' has no matching param tag in the XML comment for
9+
# 'parameter' (but other parameters do)
10+
dotnet_diagnostic.CS1573.severity = silent
11+
12+
# CS1591: Missing XML comment for publicly visible type or member
13+
# 'Type_or_Member'
14+
dotnet_diagnostic.CS1591.severity = silent

0 commit comments

Comments
 (0)