From 5e5531437e56c4b89eafa1a144624e1c15a65c72 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 18 Feb 2020 19:29:17 -0600 Subject: [PATCH] suppress CA1056 in Data proj --- server/src/FilterLists.Data/.editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/src/FilterLists.Data/.editorconfig b/server/src/FilterLists.Data/.editorconfig index ca43598c8..4c78416f4 100644 --- a/server/src/FilterLists.Data/.editorconfig +++ b/server/src/FilterLists.Data/.editorconfig @@ -2,3 +2,6 @@ # CA2227: Collection properties should be read only dotnet_diagnostic.CA2227.severity = none + +# CA1056: Uri properties should not be strings +dotnet_diagnostic.CA1056.severity = none