.editorconfig 416 B

12345678910111213141516171819202122
  1. # EditorConfig is awesome: http://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. # Unix-style newlines with a newline ending every file
  5. [*]
  6. charset = utf-8
  7. end_of_line = lf
  8. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. # Indentiation
  11. [*.{py,rst}]
  12. indent_style = space
  13. indent_size = 4
  14. [{Makefile,*.go}]
  15. indent_style = tab
  16. indent_size = 4
  17. [*.{ini,yml}]
  18. indent_style = space
  19. indent_size = 2