.editorconfig 424 B

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