.editorconfig 335 B

12345678910111213141516171819202122
  1. ###############################
  2. # Core EditorConfig Options #
  3. ###############################
  4. root = true
  5. # All files
  6. [*]
  7. insert_final_newline = true
  8. trim_trailing_whitespace = true
  9. # Code files
  10. [*.py]
  11. charset = utf-8
  12. indent_size = 4
  13. indent_style = space
  14. # Data files
  15. [*.yml]
  16. charset = utf-8
  17. indent_size = 2
  18. indent_style = space