Am using JSLint to check the javascript code quality and used the following command to generate the report in html file.
C:\Windows\System32>jslint "D:\Work\Settings.js" > "D:\Work\output.html"
Output format for the above command as below.
D:\Work\Settings.js
#1 '$' was used before it was defined.
$(document).ready(function () { // Line 1, Pos 1
#2 'document' was used before it was defined.
$(document).ready(function () { // Line 1, Pos 3
But, the report generated contains normal plain text content. So, i want to generate the report in html file format. Is there any other way to generate the JSLint output report in html file format?
Could anyone please provide your suggestion on this?