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

Prevent IDE0055 style analyzer when aligning code with spaces

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

例如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 配置选项(或组合)?

.editorconfig

中设置csharp_space_around_declaration_statements = ignore

此设置位于 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 i, int j) => i + j,
};