.editorconfig 422 B

1234567891011121314151617181920212223
  1. # coding styles between different editors and IDEs
  2. # editorconfig.org
  3. root = true
  4. [*]
  5. # Change these settings to your own preference
  6. indent_style = space
  7. indent_size = 4
  8. # We recommend you to keep these unchanged
  9. end_of_line = lf
  10. charset = utf-8
  11. trim_trailing_whitespace = true
  12. insert_final_newline = true
  13. [*.{js,html,blade.php,css,scss}]
  14. indent_style = space
  15. indent_size = 4
  16. [*.md]
  17. trim_trailing_whitespace = false