From 653a9664e4df0c73e5f58738babbf18ba08e68ec Mon Sep 17 00:00:00 2001 From: ryanbodrug-microsoft <56318517+ryanbodrug-microsoft@users.noreply.github.com> Date: Wed, 17 Jun 2020 17:26:36 -0700 Subject: [PATCH] Removing warnings relative to passing in unlocalized string literals. Most of these pertain to debug messages and aren't user facing. We may want to revisit localizing these later. --- src/.editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/.editorconfig b/src/.editorconfig index c562c9be55..2b1e755923 100644 --- a/src/.editorconfig +++ b/src/.editorconfig @@ -2,3 +2,6 @@ # SA1201: Elements should appear in the correct order dotnet_diagnostic.SA1201.severity = none + +# CA1303: Do not pass literals as localized parameters +dotnet_diagnostic.CA1303.severity = suggestion