.editorconfig 616 B

1234567891011121314151617181920212223242526
  1. # editorconfig.org
  2. root = true
  3. [*]
  4. charset = utf-8
  5. indent_style = tab
  6. end_of_line = lf
  7. insert_final_newline = true
  8. trim_trailing_whitespace = true
  9. max_line_length = 100
  10. # Markdown syntax specifies that trailing whitespaces can be meaningful,
  11. # so let’s not trim those. e.g. 2 trailing spaces = linebreak (<br />)
  12. # See https://daringfireball.net/projects/markdown/syntax#p
  13. [*.md]
  14. trim_trailing_whitespace = false
  15. # YAML forbids using tabs
  16. # See https://yaml.org/faq.html
  17. [*.{yml,yaml}]
  18. indent_size = 2
  19. indent_style = space
  20. # Views have longer line length for now
  21. [web/templates/**/*.php]
  22. max_line_length = 200