.editorconfig 467 B

12345678910111213141516171819202122232425
  1. # EditorConfig coding styles definitions. For more information about the
  2. # properties used in this file, please see the EditorConfig documentation:
  3. # http://editorconfig.org/
  4. # indicate this is the root of the project
  5. root = true
  6. [*]
  7. charset = utf-8
  8. end_of_line = LF
  9. insert_final_newline = true
  10. trim_trailing_whitespace = true
  11. indent_style = space
  12. indent_size = 2
  13. [Makefile]
  14. indent_style = tab
  15. [*.md]
  16. trim_trailing_whitespace = false
  17. [*.go]
  18. indent_style = tab