将代码与空格对齐时防止 IDE0055 样式分析器

问题描述

我使用了一种非常常见的格式化技术,通过对齐代码来提高可读性。

例如1 带有声明(可能通过 csharp_space_around_declaration_statements

var a    = foo;
var bc   = 123;
var some = thing;

例如2 不带声明

a    = foo;
bc   = 123;
some = thing;

但我使用的是 roslyn 分析器,这会触发 IDE0055:Fix formatting(前两行)。

.editorconfig 中,是否有允许这种样式的 dotnet_xxxcsharp_xxx 配置选项(或组合)?

解决方法

csharp_space_around_declaration_statements = ignore 中设置 .editorconfig

此设置位于 Text editor -> C# -> Code Style -> Formatting -> Spacing -> ignore spaces in declaration statements

虽然我不知道在模式匹配中禁用自动格式化的方法:

static int Foo(int x,int y) => (x,y) switch
{
    (    0,0) => 0,(int i,0) => 11,int j) => i + j,};