You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
523 B

4 years ago
  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