微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Roslyn 分析器不尊重 .editorconfig

如何解决Roslyn 分析器不尊重 .editorconfig

有人知道为什么 Roslyn 分析器不尊重 .editorconfig 中的 indent_style 吗?

我在 mac 上使用 Rider,我们决定在我们的解决方案中配置代码规则。

这是我们在 .editorconfig 中的设置:

# Remove the line below if you want to inherit .editorconfig settings from higher directories
root = true

# C# files
[*.cs]
#### Core EditorConfig Options ####

# Indentation and spacing
indent_size = tab
indent_style = tab
tab_width = 4

# New line preferences
end_of_line = crlf
insert_final_newline = false

看起来 Rider 正在阅读此配置并知道它应该在每个新行上使用制表符,但 Roslyn 抱怨应该修复格式。

enter image description here

有人可以帮我解决这个问题吗?有没有办法为 Roslyn 分析器配置缩进样式?

谢谢

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。