.editorconfig 523 B

123456789101112131415161718192021222324252627
  1. # http://editorconfig.org
  2. root = true
  3. [*]
  4. # Use hard or soft tabs
  5. indent_style = space
  6. # Size of a single indent
  7. indent_size = tab
  8. # Number of columns representing a tab character
  9. tab_width = 2
  10. # Use line-feed as EOL indicator
  11. end_of_line = lf
  12. # Use UTF-8 character encoding for all files
  13. charset = utf-8
  14. # Remove any whitespace characters preceding newline characters
  15. trim_trailing_whitespace = true
  16. # Ensure file ends with a newline when saving
  17. insert_final_newline = true
  18. [*.md]
  19. trim_trailing_whitespace = false