.editorconfig 358 B

123456789101112131415161718192021
  1. root = true
  2. [*]
  3. #缩进风格:空格
  4. indent_style = space
  5. #缩进大小2
  6. indent_size = 2
  7. #换行符lf
  8. end_of_line = lf
  9. #字符集utf-8
  10. charset = utf-8
  11. #是否删除行尾的空格
  12. trim_trailing_whitespace = true
  13. #是否在文件的最后插入一个空行
  14. insert_final_newline = true
  15. [*.md]
  16. trim_trailing_whitespace = false
  17. [Makefile]
  18. indent_style = tab