All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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>                                    <!-- Noncompliant -->
...
</html>

Compliant Solution

<!-- Copyright 2013 SonarSource SA -->
<html>
...
</html>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy