.editorconfig 298 B

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