AndroidAPS/.idea
Carlos Rafael Giani 9b1b797d09 IDEA/Android Studio: Disallow wildcard imports
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>
2022-08-01 15:37:50 +02:00
..
codeStyles IDEA/Android Studio: Disallow wildcard imports 2022-08-01 15:37:50 +02:00
dictionaries fix warning 2022-07-20 14:30:35 +02:00