.editorconfig 432 B

1234567891011121314151617181920212223
  1. # Defines the coding style for different editors and IDEs.
  2. # http://editorconfig.org
  3. # top-most EditorConfig file
  4. root = true
  5. # Rules for source code.
  6. [*]
  7. charset = utf-8
  8. end_of_line = lf
  9. trim_trailing_whitespace = true
  10. insert_final_newline = true
  11. indent_style = space
  12. indent_size = 4
  13. # Rules for tool configuration.
  14. [{package.json,*.yml}]
  15. indent_size = 2
  16. # Rules for markdown documents.
  17. [*.md]
  18. trim_trailing_whitespace = false