Hi! Is there a way to prevent Fleet from merging K...
# fleet
m
Hi! Is there a way to prevent Fleet from merging Kotlin imports into wildcards? This is even more noticeable now that Compose Multiplatform 1.6.0 is out and each resource is generated as an extension and is a different import, and Fleet is merging them.
a
Fleet uses .editorconfig for format configuration. So you may use these .editorconfig options that reflect IntelliJ Kotlin Import options:
Copy code
ij_kotlin_name_count_to_use_star_import = 5
or
Copy code
ij_kotlin_name_count_to_use_star_import = 2147483647
to disable
*
in imports.
❤️ 2
m
Thanks @andrey.dernov!