.editorconfig 340 B

12345678910111213141516171819202122
  1. # EditorConfig is awesome: http://EditorConfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. [*]
  5. end_of_line = lf
  6. insert_final_newline = true
  7. trim_trailing_whitespace = true
  8. charset = utf-8
  9. [*.{json,json.example}]
  10. indent_style = space
  11. indent_size = 2
  12. [*.md]
  13. trim_trailing_whitespace = false
  14. [*.py]
  15. indent_style = space
  16. indent_size = 4