.editorconfig 358 B

12345678910111213141516171819
  1. # http://editorconfig.org
  2. # 配置修改自:https://gitee.com/596392912/mica/blob/master/.editorconfig
  3. root = true
  4. [*]
  5. indent_style = tab
  6. charset = utf-8
  7. end_of_line = lf
  8. trim_trailing_whitespace = true
  9. insert_final_newline = true
  10. [*.{json,yml}]
  11. indent_style = space
  12. indent_size = 2
  13. [*.md]
  14. insert_final_newline = false
  15. trim_trailing_whitespace = false