.editorconfig 335 B

12345678910111213141516171819202122232425
  1. root = true
  2. [*]
  3. charset = utf-8
  4. end_of_line = lf
  5. insert_final_newline = true
  6. indent_style = space
  7. indent_size = 2
  8. trim_trailing_whitespace = true
  9. quote_type = single
  10. [*.md]
  11. trim_trailing_whitespace = false
  12. [*.php]
  13. indent_size = 4
  14. [*.blade.php]
  15. indent_size = 2
  16. [resources/views/**.php]
  17. indent_size = 2
  18. [index.php]
  19. indent_size = 2