我为intellij创建了一个.editorconfig文件,如下所示
# editorconfig.org
root = true
[*]
charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf
indent_style = space
indent_size = 4
[*.js]
indent_size = 4
[{package.json}]
indent_style = space
indent_size = 4
我如何一次一次将这种代码样式应用于所有文件,就知道我将打开一个文件并按Ctrl + Alt + l这将完成此工作,是否有办法将其作为intellij14中所有应用程序的配置
最佳答案
只需启用它...;)
设置>编辑器>代码样式
复选框启用EditorConfig支持
关于intellij-idea - 如何将.editorconfig应用于intellij中的现有项目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41518677/