.editorconfig 389 B

123456789101112131415161718192021222324252627282930
  1. # http://editorconfig.org
  2. root = true
  3. [*]
  4. charset = utf-8
  5. end_of_line = lf
  6. insert_final_newline = true
  7. indent_style = space
  8. indent_size = 4
  9. trim_trailing_whitespace = true
  10. [*.md]
  11. trim_trailing_whitespace = false
  12. [*.yml]
  13. indent_size = 2
  14. # 4 space indentation
  15. [*.java]
  16. indent_style = tab
  17. [*.php]
  18. indent_style = tab
  19. # Tab indentation (no size specified)
  20. [Makefile]
  21. indent_style = tab