.editorconfig 331 B

1234567891011121314
  1. # 告诉EditorConfig插件,这是根文件,不用继续往上查找root = true
  2. # 匹配全部文件
  3. [*]
  4. # 结尾换行符,可选"lf"、"cr"、"crlf"
  5. end_of_line = lf
  6. # 在文件结尾插入新行
  7. insert_final_newline = true
  8. # 删除一行中的前后空格
  9. trim_trailing_whitespace = true
  10. indent_style=space
  11. indent_size=4