And another Q: I don't want to use wildcard import...
# fleet
b
And another Q: I don't want to use wildcard imports in my project,
ktlint
yells at me for it (and I like that). But whenever I "optimize imports" in Fleet, it uses wildcards all the time. I have the following
.editorconfig
in my project root but it doesn't help:
Copy code
# Copied from <https://youtrack.jetbrains.com/issue/FL-15599/No-way-of-disabling-Java-Kotlin-wildcard-imports>

[*.java]
ij_java_class_count_to_use_import_on_demand = 1024
ij_java_names_count_to_use_import_on_demand = 1024

[*.kt]
ij_kotlin_name_count_to_use_star_import = 1024
ij_kotlin_name_count_to_use_star_import_for_members = 1024
o
Hi! Thanks for the feedback, I've reopened the mentioned issue, please follow it for progress: FL-15599
🙌 1