.editorconfig 219 B

1234567891011121314151617
  1. # http://EditorConfig.org
  2. root = true
  3. [*]
  4. charset = utf-8
  5. indent_style = space
  6. indent_size = 2
  7. trim_trailing_whitespace = true
  8. [*.go]
  9. indent_style = tab
  10. indent_size = 4
  11. [Makefile]
  12. indent_style = tab
  13. indent_size = 8