-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.editorconfig
16 lines (12 loc) · 966 Bytes
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[*.cs]
dotnet_diagnostic.CA1707.severity = none # CA1707: Identifiers should not contain underscores
dotnet_diagnostic.CA1822.severity = none # CA1822: Mark members as static
dotnet_diagnostic.CA1861.severity = none # CA1861: Avoid constant arrays as arguments
dotnet_diagnostic.CA2201.severity = none # CA2201: Do not raise reserved exception types
dotnet_diagnostic.IDE0022.severity = none # IDE0022: Use expression body for methods
# XML Documentation
dotnet_diagnostic.CS1573.severity = none # CS1573: Missing XML comment for parameter
dotnet_diagnostic.CS1591.severity = none # CS1591: Missing XML comment for publicly visible type or member
dotnet_diagnostic.CS1712.severity = none # CS1712: Type parameter has no matching typeparam tag in the XML comment (but other type parameters do)
dotnet_diagnostic.MA0046.severity = none
dotnet_diagnostic.TUnit0046.severity = none