.editorconfig 504 B

12345678910111213141516171819202122232425262728
  1. # EditorConfig helps developers define and maintain consistent
  2. # coding styles between different editors and IDEs
  3. # editorconfig.org
  4. root = true
  5. [*]
  6. # change these settings to your own preference
  7. indent_style = space
  8. indent_size = 4
  9. # we recommend you to keep these unchanged
  10. end_of_line = lf
  11. charset = utf-8
  12. trim_trailing_whitespace = true
  13. insert_final_newline = true
  14. [*.md]
  15. trim_trailing_whitespace = false
  16. [*.{yml,json,xml}]
  17. indent_size = 2
  18. [package.json]
  19. indent_style = space
  20. indent_size = 2