.editorconfig 475 B

123456789101112131415161718192021
  1. root = true
  2. [*]
  3. trim_trailing_whitespace = true
  4. insert_final_newline = true
  5. charset = utf-8
  6. indent_style = space
  7. indent_size = 2
  8. tab_width = 2
  9. [*.md]
  10. # Markdown is sensitive to the trailing spaces
  11. trim_trailing_whitespace = false
  12. [*.java]
  13. max_line_length = 100
  14. ij_continuation_indent_size = 4
  15. # Doc: https://youtrack.jetbrains.com/issue/IDEA-170643#focus=streamItem-27-3708697.0-0
  16. # $ means "static"
  17. ij_java_imports_layout = $*,|,*
  18. ij_java_use_single_class_imports = true