.editorconfig 453 B

1234567891011121314151617
  1. # Configuration file for EditorConfig
  2. # More information is available under http://EditorConfig.org
  3. # Ignore any other files further up in the file system
  4. root = true
  5. # Configuration for all files
  6. [*]
  7. # Always end files with a blank line
  8. insert_final_newline = true
  9. # Force 4-column tabs for indentation
  10. indent_style = tab
  11. tab_width = 4
  12. # Force utf-8
  13. charset = "utf-8"
  14. # Remove whitespace characters at the end of line
  15. trim_trailing_whitespace = true