如何在 Xcode 中使用 EditorConfig?

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

随着 Xcode 16 的发布,苹果添加了对 EditorConfig 的支持

添加了对 EditorConfig 的支持。编辑器现在尊重缩进 .editorconfig 文件中给出的设置。 Xcode 支持以下内容 设置:indent_styletab_widthindent_sizeend_of_lineinsert_final_newlinemax_line_lengthtrim_trailing_whitespace。 请参阅https://editorconfig.org了解更多信息。设置来自 .editorconfig 文件通常优先于中给出的设置 文件的 View > Inspectors > File“文本编辑” 部分或 团体。可以通过取消选中“首选设置”来禁用此功能 EditorConfig” Xcode > 设置 > 缩进选项卡上的复选框 文本编辑。 (20796230)

在我的项目中,我在根目录下创建一个新的 .editorconfig 文件:

# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false

[*.swift]
indent_style = space
indent_size = 4

[*.{h, m, mm}]
indent_style = space
indent_size = 4

[*.metal]
indent_style = space
indent_size = 4

但是,当我尝试重新缩进时,它不起作用

swift objective-c xcode metal editorconfig
1个回答
0
投票

事实证明这是一个已知问题

对 .editorconfig 的更改不会立即反映在打开的文件中。 (120389049)

解决方法:退出并重新启动 Xcode。

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