EditorConfig 文件中 [*] 和 [**] 有什么区别
what's the difference between [*] and [**] in EditorConfig file
doc 状态:
[*] Matches any string of characters, except path separators (/)
[**] Matches any string of characters
但是,以下情况对当前根路径和子目录都有效。那么EditorConfig文件中的[*]和[**]有什么区别呢?
[*]
indent_style = space
indent_size = 2
和
[**]
indent_style = space
indent_size = 2
*
匹配任何字符串,路径分隔符除外 (/)
**
匹配任意字符串
请务必阅读 documentation
doc 状态:
[*] Matches any string of characters, except path separators (/)
[**] Matches any string of characters
但是,以下情况对当前根路径和子目录都有效。那么EditorConfig文件中的[*]和[**]有什么区别呢?
[*]
indent_style = space
indent_size = 2
和
[**]
indent_style = space
indent_size = 2
*
匹配任何字符串,路径分隔符除外 (/)
**
匹配任意字符串
请务必阅读 documentation