-
-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Christopher Quadflieg
committed
Jul 10, 2020
1 parent
459974d
commit a763b2e
Showing
47 changed files
with
246 additions
and
212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<checkstyle version="4.3"> | ||
<file name="{{path}}"> | ||
<error line="8" column="7" severity="error" message="The value of attribute [ bad ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="8" column="14" severity="error" message="The value of attribute [ bad ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="8" column="14" severity="error" message="Duplicate of attribute name [ bad ] was found." source="htmlhint.attr-no-duplication"/> | ||
<error line="9" column="7" severity="error" message="The value of attribute [ bad ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="9" column="14" severity="error" message="The value of attribute [ bad ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="8" column="7" severity="warning" message="The value of attribute [ bad ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="8" column="14" severity="warning" message="The value of attribute [ bad ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="9" column="14" severity="error" message="Duplicate of attribute name [ bad ] was found." source="htmlhint.attr-no-duplication"/> | ||
<error line="10" column="22" severity="error" message="Tag must be paired, no start tag: [ </input> ]" source="htmlhint.tag-pair"/> | ||
<error line="11" column="3" severity="error" message="Special characters must be escaped : [ < ]." source="htmlhint.spec-char-escape"/> | ||
<error line="11" column="18" severity="error" message="Special characters must be escaped : [ > ]." source="htmlhint.spec-char-escape"/> | ||
<error line="13" column="11" severity="error" message="Tag must be paired, no start tag: [ </div> ]" source="htmlhint.tag-pair"/> | ||
<error line="14" column="9" severity="error" message="Tag must be paired, no start tag: [ </div> ]" source="htmlhint.tag-pair"/> | ||
<error line="15" column="7" severity="error" message="Tag must be paired, no start tag: [ </hello> ]" source="htmlhint.tag-pair"/> | ||
<error line="16" column="5" severity="error" message="Tag must be paired, no start tag: [ </test> ]" source="htmlhint.tag-pair"/> | ||
<error line="17" column="3" severity="error" message="Tag must be paired, no start tag: [ </div> ]" source="htmlhint.tag-pair"/> | ||
<error line="21" column="15" severity="error" message="The value of attribute [ class ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="21" column="24" severity="error" message="The value of attribute [ what ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="21" column="32" severity="error" message="The value of attribute [ something ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="25" column="3" severity="error" message="Tag must be paired, no start tag: [ </div> ]" source="htmlhint.tag-pair"/> | ||
<error line="26" column="1" severity="error" message="Tag must be paired, no start tag: [ </bad> ]" source="htmlhint.tag-pair"/> | ||
<error line="27" column="1" severity="error" message="Tag must be paired, no start tag: [ </bad> ]" source="htmlhint.tag-pair"/> | ||
<error line="9" column="7" severity="warning" message="The value of attribute [ bad ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="9" column="14" severity="warning" message="The value of attribute [ bad ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="10" column="22" severity="warning" message="Tag must be paired, no start tag: [ </input> ]" source="htmlhint.tag-pair"/> | ||
<error line="11" column="3" severity="warning" message="Special characters must be escaped : [ < ]." source="htmlhint.spec-char-escape"/> | ||
<error line="11" column="18" severity="warning" message="Special characters must be escaped : [ > ]." source="htmlhint.spec-char-escape"/> | ||
<error line="13" column="11" severity="warning" message="Tag must be paired, no start tag: [ </div> ]" source="htmlhint.tag-pair"/> | ||
<error line="14" column="9" severity="warning" message="Tag must be paired, no start tag: [ </div> ]" source="htmlhint.tag-pair"/> | ||
<error line="15" column="7" severity="warning" message="Tag must be paired, no start tag: [ </hello> ]" source="htmlhint.tag-pair"/> | ||
<error line="16" column="5" severity="warning" message="Tag must be paired, no start tag: [ </test> ]" source="htmlhint.tag-pair"/> | ||
<error line="17" column="3" severity="warning" message="Tag must be paired, no start tag: [ </div> ]" source="htmlhint.tag-pair"/> | ||
<error line="21" column="15" severity="warning" message="The value of attribute [ class ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="21" column="24" severity="warning" message="The value of attribute [ what ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="21" column="32" severity="warning" message="The value of attribute [ something ] must be in double quotes." source="htmlhint.attr-value-double-quotes"/> | ||
<error line="25" column="3" severity="warning" message="Tag must be paired, no start tag: [ </div> ]" source="htmlhint.tag-pair"/> | ||
<error line="26" column="1" severity="warning" message="Tag must be paired, no start tag: [ </bad> ]" source="htmlhint.tag-pair"/> | ||
<error line="27" column="1" severity="warning" message="Tag must be paired, no start tag: [ </bad> ]" source="htmlhint.tag-pair"/> | ||
</file> | ||
</checkstyle> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.