.editorconfig 376 B

12345678910111213141516171819
  1. # Remember that the prettier config will take prececence over .editorconfig
  2. # When using the prettier plugin and commandline tool.
  3. root = true
  4. [*]
  5. indent_style = space
  6. indent_size = 2
  7. charset=utf-8
  8. trim_trailing_whitespace = true
  9. insert_final_newline = true
  10. [*.yml]
  11. indent_style = space
  12. indent_size = 2
  13. tab_width = 4
  14. end_of_line = lf
  15. [*.md]
  16. trim_trailing_whitespace = false