From aaf395b190ba9aa7ac97e4747205a56189a06064 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 18 Feb 2020 19:24:20 -0600 Subject: [PATCH] suppress CA2227 in Data proj --- server/src/FilterLists.Data/.editorconfig | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 server/src/FilterLists.Data/.editorconfig diff --git a/server/src/FilterLists.Data/.editorconfig b/server/src/FilterLists.Data/.editorconfig new file mode 100644 index 000000000..ca43598c8 --- /dev/null +++ b/server/src/FilterLists.Data/.editorconfig @@ -0,0 +1,4 @@ +[*.cs] + +# CA2227: Collection properties should be read only +dotnet_diagnostic.CA2227.severity = none