.editorconfig 438 B

1234567891011121314151617181920212223242526
  1. # editorconfig.org
  2. root = true
  3. [*]
  4. indent_style = tab
  5. indent_size = 2
  6. tab_width = 2
  7. end_of_line = lf
  8. charset = utf-8
  9. trim_trailing_whitespace = true
  10. insert_final_newline = true
  11. max_line_length = 80
  12. quote_type = single
  13. curly_bracket_next_line = true
  14. spaces_around_operators = true
  15. spaces_around_brackets = true
  16. [*.{yml,yaml}]
  17. indent_style = space
  18. indent_size = 2
  19. [*.{md,mdx}]
  20. trim_trailing_whitespace = false
  21. [*.go]
  22. indent_style = tab