.editorconfig 441 B

12345678910111213141516171819202122232425
  1. # This file is for unifying the coding style for different editors and IDEs
  2. # editorconfig.org
  3. # top-most EditorConfig file
  4. root = true
  5. # every file
  6. [*]
  7. charset = utf-8
  8. end_of_line = lf
  9. indent_size = 2
  10. indent_style = space
  11. insert_final_newline = true
  12. trim_trailing_whitespace = true
  13. # 4 space indentation
  14. [*.py]
  15. indent_size = 4
  16. # Tab indentation (no size specified)
  17. [Makefile]
  18. indent_style = tab
  19. [*.md]
  20. trim_trailing_whitespace = false