.editorconfig 393 B

12345678910111213141516171819202122232425262728
  1. # http://editorconfig.org
  2. root = true
  3. [*]
  4. indent_style = space
  5. indent_size = 4
  6. max_line_length = 120
  7. trim_trailing_whitespace = true
  8. insert_final_newline = true
  9. charset = utf-8
  10. end_of_line = lf
  11. [*.yml]
  12. indent_style = space
  13. indent_size = 2
  14. charset = utf-8
  15. end_of_line = lf
  16. [*.bat]
  17. indent_style = tab
  18. end_of_line = crlf
  19. [LICENSE]
  20. insert_final_newline = false
  21. [Makefile]
  22. indent_style = tab