.editorconfig 302 B

1234567891011121314151617181920212223
  1. root = true
  2. [*]
  3. end_of_line = lf
  4. indent_style = space
  5. charset = utf-8
  6. insert_final_newline = true
  7. trim_trailing_whitespace = true
  8. [*.{yml,twig,php}]
  9. indent_size = 4
  10. [*.{js,json,scss,css}]
  11. indent_size = 2
  12. [.travis.yml]
  13. indent_size = 2
  14. [composer.json]
  15. indent_size = 4
  16. [Makefile]
  17. indent_style = tab