在.editorconfig中,是否允许在等号之前使用缩进,就像在php.ini中那样
示例:
# editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
end_of_line = lf
insert_final_newline = false发布于 2014-05-20 05:42:58
是的,这是允许的。所有空白都将被裁剪。
https://stackoverflow.com/questions/21330265
复制相似问题