.editorconfig 765 B

1234567891011121314151617181920212223242526272829303132333435
  1. # unifying the coding style for different editors and IDEs => editorconfig.org
  2. ; indicate this is the root of the project
  3. root = true
  4. ###########################################################
  5. ; common
  6. ###########################################################
  7. [*]
  8. charset = utf-8
  9. end_of_line = LF
  10. insert_final_newline = true
  11. trim_trailing_whitespace = true
  12. indent_style = space
  13. indent_size = 2
  14. ###########################################################
  15. ; make
  16. ###########################################################
  17. [Makefile]
  18. indent_style = tab
  19. [makefile]
  20. indent_style = tab
  21. ###########################################################
  22. ; markdown
  23. ###########################################################
  24. [*.md]
  25. trim_trailing_whitespace = false