9b1b797d09
Wildcard imports are generally discouraged 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. Also note that ktlint has a rule against wildcard imports. Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org> |
||
---|---|---|
.. | ||
codeStyles | ||
dictionaries |