From 5b30774a520b6b6f774de79e1687adc0d13c8951 Mon Sep 17 00:00:00 2001 From: Lukas Gasselsberger | alu-one Date: Mon, 25 Apr 2022 08:27:19 +0200 Subject: [PATCH] Disable cimpilerwarning for `SA1601` for test projects --- Tests/FluentAssertions.Equivalency.Specs/.editorconfig | 2 ++ Tests/FluentAssertions.Specs/.editorconfig | 3 +++ 2 files changed, 5 insertions(+) diff --git a/Tests/FluentAssertions.Equivalency.Specs/.editorconfig b/Tests/FluentAssertions.Equivalency.Specs/.editorconfig index 436717d4cf..2863a4b34c 100644 --- a/Tests/FluentAssertions.Equivalency.Specs/.editorconfig +++ b/Tests/FluentAssertions.Equivalency.Specs/.editorconfig @@ -127,6 +127,8 @@ dotnet_diagnostic.SA1404.severity = none dotnet_diagnostic.SA1502.severity = none # SA1600: Elements should be documented dotnet_diagnostic.SA1600.severity = none +# SA1601: Partial elements should be documented +dotnet_diagnostic.SA1601.severity = none # SA1602: Enumeration items should be documented dotnet_diagnostic.SA1602.severity = none # SA1611: The documentation for parameter is missing diff --git a/Tests/FluentAssertions.Specs/.editorconfig b/Tests/FluentAssertions.Specs/.editorconfig index f86d2a19dd..96c16843ba 100644 --- a/Tests/FluentAssertions.Specs/.editorconfig +++ b/Tests/FluentAssertions.Specs/.editorconfig @@ -129,6 +129,8 @@ dotnet_diagnostic.SA1404.severity = none dotnet_diagnostic.SA1502.severity = none # SA1600: Elements should be documented dotnet_diagnostic.SA1600.severity = none +# SA1601: Partial elements should be documented +dotnet_diagnostic.SA1601.severity = none # SA1602: Enumeration items should be documented dotnet_diagnostic.SA1602.severity = none # SA1611: The documentation for parameter is missing @@ -139,5 +141,6 @@ dotnet_diagnostic.SA1615.severity = none # SA1005: Single line comments should begin with single space dotnet_diagnostic.SA1005.severity = suggestion + # ReSharper/Rider resharper_expression_is_always_null_highlighting=none