.editorconfig 387 B

12345678910111213141516171819202122
  1. # EditorConfig defines and maintains consistent coding styles between different
  2. # editors and IDEs: http://EditorConfig.org/
  3. # Top-most EditorConfig file
  4. root = true
  5. # All files
  6. [*.*]
  7. charset = utf-8
  8. end_of_line = lf
  9. insert_final_newline = true
  10. indent_style = space
  11. indent_size = 4
  12. trim_trailing_whitespace = true
  13. max_line_length = 80
  14. [*.md]
  15. indent_size = 2
  16. [*.json]
  17. indent_size = 2