.editorconfig 485 B

1234567891011121314151617181920
  1. # EditorConfig is awesome: http://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. [*]
  5. # Unix-style newlines with a newline ending every file
  6. end_of_line = lf
  7. insert_final_newline = true
  8. # All files UTF-8; no exceptions
  9. charset = utf-8
  10. # Default to single 4-wide tab indentation
  11. indent_style = tab
  12. # NOT setting the indent_size for tabs allows the user's IDE configuration to determine the tab size
  13. # indent_size = 4
  14. [*.{md,yaml,yml}]
  15. indent_style = space
  16. indent_size = 4