.editorconfig 269 B

123456789101112131415161718
  1. root = true
  2. [*]
  3. block_comment_start = /*
  4. block_comment_end = */
  5. charset = utf-8
  6. indent_style = space
  7. indent_size = 2
  8. end_of_line = lf
  9. insert_final_newline = true
  10. trim_trailing_whitespace = true
  11. [*.go]
  12. indent_size = 4
  13. [README.md]
  14. indent_style = space
  15. indent_size = 4