From eeeb7f8110533f813cd5d9e5c555f6873c60c5ad Mon Sep 17 00:00:00 2001 From: Giuseppe Lippolis Date: Mon, 5 Dec 2022 17:54:35 +0100 Subject: [PATCH] feat: Enable Rule CA1815 --- .editorconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.editorconfig b/.editorconfig index 238e9887bd..1583d3e469 100644 --- a/.editorconfig +++ b/.editorconfig @@ -144,6 +144,8 @@ dotnet_diagnostic.CS1591.severity = suggestion dotnet_diagnostic.CA1304.severity = warning # CA1802: Use literals where appropriate dotnet_diagnostic.CA1802.severity = warning +# CA1815: Override equals and operator equals on value types +dotnet_diagnostic.CA1815.severity = warning # CA1820: Test for empty strings using string length dotnet_diagnostic.CA1820.severity = warning # CA1821: Remove empty finalizers