使用JSLint检查javascript代码质量并使用以下命令在html文件中生成报告。
C:\Windows\System32>jslint "D:\Work\Settings.js" > "D:\Work\output.html"
以上命令的输出格式如下。
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
但是,生成的报告包含普通的纯文本内容。所以,我想以html文件格式生成报告。有没有其他方法以html文件格式生成JSLint输出报告?
有人可以就此提出你的建议吗?