.editorconfig 292 B

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