Where should I put a comment about a Kotlin source file?
Classes and other objects have KDoc:
/**
* Summary
*
* Rest of documentation goes here.
*/
class A {
...
}
But where should I put something like this?
// This file contains constants shared between frontend and backend.
// Make sure not to use any JVM- or JS-specific import.
// ...
Before the package
declaration? After it? Should I use KDoc comments / block comments / line comments?
Is there any established convention?