.editorconfig 414 B

123456789101112131415161718192021
  1. # http://editorconfig.org
  2. root = true
  3. # 说明
  4. ## 设置文件编码为 UTF-8;
  5. ## 用两个空格代替制表符;
  6. ## 在保存时删除尾部的空白字符;
  7. ## 在文件结尾添加一个空白行;
  8. [*]
  9. indent_style = space
  10. indent_size = 2
  11. end_of_line = lf
  12. charset = utf-8
  13. trim_trailing_whitespace = true
  14. insert_final_newline = true
  15. [*.md]
  16. trim_trailing_whitespace = false
  17. [Makefile]
  18. indent_style = tab