org.sonar.l10n.web.rules.Web.HeaderCheck.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-web-plugin Show documentation
Show all versions of sonar-web-plugin Show documentation
Enables scanning of HTML, and JSP/JSF files.
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> <!-- Noncompliant -->
...
</html>
Compliant Solution
<!-- Copyright 2013 SonarSource SA -->
<html>
...
</html>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy