org.sonar.l10n.web.rules.Web.HeaderCheck.html Maven / Gradle / Ivy
The newest version!
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> <!-- Non-Compliant -->
...
</html>
Compliant Solution
<!-- Copyright 2013 SonarSource SA --> <!-- Compliant -->
<html>
...
</html>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy