.editorconfig 359 B

1234567891011121314151617
  1. root = true
  2. [*]
  3. charset = utf-8
  4. indent_size = 4
  5. indent_style = space
  6. insert_final_newline = true
  7. trim_trailing_whitespace = true
  8. # Disable wildcard imports
  9. [*.{java, kt}]
  10. ij_kotlin_name_count_to_use_star_import = 999
  11. ij_kotlin_name_count_to_use_star_import_for_members = 999
  12. ij_java_class_count_to_use_import_on_demand = 999
  13. [*.{yml,yaml}]
  14. indent_size = 2