Hi there, when building a library, how could I fla...
# library-development
h
Hi there, when building a library, how could I flag certain functions as being used externally (by the users of the library) (without always writing a dummy test)? Or do I simply need to disable the inspection for these functions? Example
j
Try to enable explicitApi, I think those warnings are gone. If not, you can suppress them for all function in the file (follow the IDE actions so it put the annotation for you)
h
Thanks for the advice.