.editorconfig 353 B

12345678910111213141516171819
  1. # http://editorconfig.org
  2. root = true
  3. # Unix-style newlines with a newline ending every file
  4. [*]
  5. indent_style = space
  6. indent_size = 2
  7. charset = utf-8
  8. end_of_line = lf
  9. insert_final_newline = true
  10. trim_trailing_whitespace = true
  11. # Tab indentation (no size specified)
  12. [Makefile]
  13. indent_style = tab
  14. # Golang uses tabs by default
  15. [*.go]
  16. indent_style = tab