From d62661c3c6bef8225a4a264c5e293a938d3eb2e3 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sun, 9 Feb 2020 21:05:02 -0600 Subject: [PATCH] disable SA1101 ref https://github.com/DotNetAnalyzers/StyleCopAnalyzers/issues/530#issuecomment-81247794 --- server/.editorconfig | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 server/.editorconfig diff --git a/server/.editorconfig b/server/.editorconfig new file mode 100644 index 000000000..c67dd51b8 --- /dev/null +++ b/server/.editorconfig @@ -0,0 +1,4 @@ +[*.cs] + +# SA1101: Prefix local calls with this +dotnet_diagnostic.SA1101.severity = none