.editorconfig 452 B

12345678910111213141516171819202122
  1. # EditorConfig is awesome: https://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. # Unix-style newlines with a newline ending every file
  5. [*]
  6. charset = utf-8
  7. end_of_line = lf
  8. trim_trailing_whitespace = true
  9. insert_final_newline = true
  10. # Matches multiple files with brace expansion notation
  11. # Set default charset
  12. [*.{erl, src, hrl}]
  13. indent_style = space
  14. indent_size = 4
  15. # Tab indentation (no size specified)
  16. [Makefile]
  17. indent_style = tab