.editorconfig 280 B

1234567891011121314151617181920212223
  1. root = true
  2. [*]
  3. charset = utf-8
  4. end_of_line = lf
  5. insert_final_newline = true
  6. trim_trailing_whitespace = true
  7. [*.go]
  8. indent_style = tab
  9. [*.mod]
  10. indent_style = tab
  11. [*.sum]
  12. indent_style = tab
  13. [Makefile]
  14. indent_style = tab
  15. [*.{yml,yaml,md}]
  16. indent_style = space
  17. indent_size = 2