editorconfig 好像不被 Visual Studio mac 使用

问题描述 投票:0回答:1

我刚刚在解决方案顶层添加了新的 editoconfig (https://github.com/editorconfig),并按如下方式添加以具有文件范围命名空间,但在创建新类命名空间时仍然保持块类型。我做错了什么?

P.S 是否有可能像我们在 Windows 系统上一样预览编辑器配置?

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
# IDE0160: Convert to file-scoped namespace
csharp_style_namespace_declarations = file_scoped:silent
c# visual-studio-mac
1个回答
0
投票

看起来 VS Mac 不支持

csharp_style_namespace_declarations
属性,只支持核心属性集:

  • indent_style
  • indent_size
  • tab_width
  • end_of_line
  • charset
  • trim_trailing_whitespace
  • insert_final_newline

https://learn.microsoft.com/en-us/visualstudio/mac/editorconfig?view=vsmac-2022

© www.soinside.com 2019 - 2024. All rights reserved.