Each source file should start with a header stating file ownership and the license which must be used to distribute the application.
This rule must be fed with the header text that is expected at the beginning of every file.
Noncompliant code example
<html> <!-- Noncompliant -->
...
</html>
Compliant solution
<!-- Copyright 2013 SonarSource SA -->
<html>
...
</html>