.editorconfig 258B

1234567891011121314
  1. # doc here : https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties
  2. root = true
  3. [*]
  4. indent_style = space
  5. indent_size = 2
  6. end_of_line = lf
  7. charset = utf-8
  8. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. [*.py]
  11. indent_size = 4