.editorconfig 525 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # https://editorconfig.org
  2. root = true
  3. [*]
  4. charset = utf-8
  5. end_of_line = lf
  6. indent_size = 4
  7. indent_style = tab
  8. insert_final_newline = true
  9. trim_trailing_whitespace = true
  10. [*.feature]
  11. indent_size = 2
  12. indent_style = space
  13. [*.yml]
  14. indent_size = 2
  15. indent_style = space
  16. [*.md]
  17. trim_trailing_whitespace = false
  18. [*.svg]
  19. insert_final_newline = false
  20. [package*.json]
  21. indent_size = 2
  22. indent_style = space
  23. [build/psalm-baseline.xml]
  24. indent_size = 2
  25. indent_style = space
  26. [config/*config.php]
  27. indent_size = 2
  28. indent_style = space