.editorconfig 305 B

123456789101112131415161718
  1. # http://editorconfig.org
  2. root = true
  3. [*]
  4. indent_style = tab
  5. indent_size = 4
  6. tab_width = 4
  7. end_of_line = crlf
  8. charset = utf-8
  9. trim_trailing_whitespace = true
  10. insert_final_newline = true
  11. [*.{yaml,yml,py,md}]
  12. indent_style = space
  13. indent_size = 4
  14. [*.md]
  15. trim_trailing_whitespace = false