.editorconfig 346 B

1234567891011121314151617181920212223
  1. root = true
  2. [*]
  3. indent_style = tab
  4. indent_size = 4
  5. charset = utf-8
  6. trim_trailing_whitespace = true
  7. insert_final_newline = true
  8. max_line_length = 233
  9. [*.json]
  10. indent_style = space
  11. indent_size = 2
  12. [*.yml]
  13. indent_style = space
  14. indent_size = 2
  15. [test/cases/parsing/bom/bomfile.{css,js}]
  16. charset = utf-8-bom
  17. [*.md]
  18. trim_trailing_whitespace = false