.editorconfig 455 B

12345678910111213141516171819202122
  1. ; This file is for unifying the coding style for different editors and IDEs.
  2. ; More information at http://editorconfig.org
  3. ; This style originates from https://github.com/fewagency/best-practices
  4. root = true
  5. [*]
  6. charset = utf-8
  7. end_of_line = lf
  8. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. [*.go]
  11. indent_style = tab
  12. indent_size = 4
  13. tab_width = 4
  14. [Makefile]
  15. indent_style = tab
  16. [*.{yml,yaml,json,md}]
  17. indent_style = space
  18. indent_size = 2