From 8375541f494e30a04adf584a0113b554695b3cea Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Tue, 2 Jun 2020 09:54:04 -0700 Subject: [PATCH] Enable RS0101 (Avoid multiple blank lines) This change excludes src/Compilers from the analysis. --- eng/config/rulesets/Shipping.ruleset | 1 - src/Compilers/.editorconfig | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/eng/config/rulesets/Shipping.ruleset b/eng/config/rulesets/Shipping.ruleset index 5295e6c3273..379c100933d 100644 --- a/eng/config/rulesets/Shipping.ruleset +++ b/eng/config/rulesets/Shipping.ruleset @@ -115,7 +115,6 @@ - diff --git a/src/Compilers/.editorconfig b/src/Compilers/.editorconfig index f5a4d62597d..e4be403701a 100644 --- a/src/Compilers/.editorconfig +++ b/src/Compilers/.editorconfig @@ -6,6 +6,9 @@ dotnet_naming_style.local_function_style.capitalization = camel_case # RS0100: Statements must be placed on their own line dotnet_diagnostic.RS0100.severity = none +# RS0101: Avoid multiple blank lines +dotnet_diagnostic.RS0101.severity = none + # RS0102: Braces must not have blank lines between them dotnet_diagnostic.RS0102.severity = none -- GitLab