.editorconfig 402 B

123456789101112131415161718
  1. root = true
  2. [*.{adoc, bat, groovy, html, java, js, jsp, kt, kts, md, properties, py, rb, sh, sql, svg, txt, xml, xsd}]
  3. charset = utf-8
  4. [*.{groovy, java, kt, kts, xml, xsd}]
  5. indent_style = tab
  6. indent_size = 4
  7. continuation_indent_size = 8
  8. end_of_line = lf
  9. [*.{js, html}]
  10. charset = utf-8
  11. indent_style = space
  12. indent_size = 2
  13. end_of_line = lf
  14. insert_final_newline = true
  15. trim_trailing_whitespace = true