gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 08:03:56 24 4
gpt4 key购买 nike

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

例如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,
};

关于c# - 将代码与空格对齐时阻止 IDE0055 样式分析器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66315458/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com