.editorconfig 504 B

1234567891011121314151617181920212223242526
  1. # EditorConfig is awesome: https://editorconfig.org
  2. # top-most EditorConfig file
  3. root = true
  4. # Unix-style newlines with a newline ending every file
  5. [*]
  6. charset = utf-8
  7. end_of_line = lf
  8. insert_final_newline = true
  9. # PHP PSR-2 Coding Standards
  10. # http://www.php-fig.org/psr/psr-2/
  11. [*.php]
  12. indent_style = tab
  13. indent_size = 4
  14. trim_trailing_whitespace = true
  15. insert_final_newline = true
  16. [*.js]
  17. indent_style = tab
  18. [*.css]
  19. indent_style = tab
  20. [*.xml]
  21. indent_style = tab
  22. [*.md]
  23. trim_trailing_whitespace = false