Does anyone know of a static analysis tool that I ...
# getting-started
d
Does anyone know of a static analysis tool that I can use to check that a package and it’s children don’t contain any classes that do not have the
internal
modifier?
r
Not exactly what you are looking for, but you could use explicit API mode to protect against unintentional public APIs: https://kotlinlang.org/docs/whatsnew14.html#explicit-api-mode-for-library-authors
d
oh, this might be exactly what I want
thanks
👍 1