Commit 9b1b797d09 disabled wildcard imports
for these reasons:
(Source: https://jiga.dev/avoiding-wildcard-imports-in-java-kotlin-with-intellij/)
* Explicit imports clearly states what external classes the current class
is directly using, provided that you don’t leave redundant imports
in your code.
* If there are two classes with the same name from different packages,
it can introduce collision when using wildcard imports.
* When multiple people are working in a project, wildcard imports can
create confusion as to which classes are actually imported.
Apparently, this got accidentally reverted.
Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>