.editorconfig 356 B

123456789101112131415161718192021222324252627
  1. root = true
  2. [*]
  3. end_of_line = lf
  4. charset = utf-8
  5. trim_trailing_whitespace = true
  6. insert_final_newline = true
  7. [composer.json]
  8. indent_style = space
  9. indent_size = 4
  10. [*.php]
  11. indent_style = space
  12. indent_size = 4
  13. [*.yml]
  14. indent_style = space
  15. indent_size = 2
  16. [*.feature]
  17. indent_style = space
  18. indent_size = 2
  19. [phpspec.*]
  20. indent_style = space
  21. indent_size = 2