.editorconfig 356 B

1234567891011121314151617181920
  1. # https://editorconfig.org/
  2. root = true
  3. [*]
  4. trim_trailing_whitespace = true
  5. insert_final_newline = true
  6. end_of_line = lf
  7. charset = utf-8
  8. tab_width = 4
  9. indent_style = space
  10. [*.php]
  11. indent_size = 4
  12. [*.md]
  13. max_line_length = 80
  14. [*.{yaml,yml}]
  15. indent_size = 2