-
-
Notifications
You must be signed in to change notification settings - Fork 385
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
Showing
10 changed files
with
309 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ add: | |
|
||
1. add rule: csslint | ||
2. add rule: jshint | ||
3. add cli | ||
|
||
fix: | ||
|
||
|
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,5 +1,5 @@ | ||
TODO | ||
================== | ||
|
||
1. nodejs cli | ||
2. grunt plugin | ||
1. grunt plugin | ||
2. w3c rule |
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 |
---|---|---|
@@ -0,0 +1,146 @@ | ||
#!/usr/bin/env node | ||
|
||
var program = require('commander'), | ||
fs = require('fs'), | ||
path = require('path'), | ||
HTMLHint = require("../index").HTMLHint; | ||
|
||
require('colors'); | ||
|
||
function map(val) { | ||
var objMap = {}; | ||
val.split(',').forEach(function(item){ | ||
var arrItem = item.split(/\s*=\s*/); | ||
objMap[arrItem[0]] = arrItem[1]?arrItem[1]:true; | ||
}); | ||
return objMap; | ||
} | ||
|
||
program.on('--help', function(){ | ||
console.log(' Examples:'); | ||
console.log(''); | ||
console.log(' htmlhint -l'); | ||
console.log(' htmlhint -r tag-pair,id-class-value=underline test.html'); | ||
console.log(' htmlhint -c .htmlhintrc test.html'); | ||
console.log(''); | ||
}); | ||
|
||
program | ||
.version('0.9.2') | ||
.usage('[options] <file ...>') | ||
.option('-l, --list', 'show all of the rules available.') | ||
.option('-c, --config <file>', 'custom configuration file.') | ||
.option('-r, --rules <ruleid, ruleid=value ...>', 'set all of the rules available.', map) | ||
.parse(process.argv); | ||
|
||
if(program.list){ | ||
listRules(); | ||
quit(0); | ||
} | ||
|
||
var arrAllFiles = getAllFiles(program.args); | ||
|
||
var ruleset = program.rules; | ||
if(ruleset === undefined){ | ||
ruleset = getConfig(program.config); | ||
} | ||
|
||
quit(processFiles(arrAllFiles, ruleset)); | ||
|
||
function listRules(){ | ||
var rules = HTMLHint.rules, | ||
rule; | ||
console.log('\r\nAll rules:'); | ||
console.log('======================================'); | ||
for (var id in rules){ | ||
rule = rules[id]; | ||
console.log('\r\n'+rule.id+' :'); | ||
console.log(' '+rule.description); | ||
} | ||
} | ||
|
||
function getConfig(configFile){ | ||
if(configFile === undefined){ | ||
configFile = '.htmlhintrc'; | ||
} | ||
if(fs.existsSync(configFile)){ | ||
var config = fs.readFileSync(configFile, 'utf-8'), | ||
ruleset; | ||
try{ | ||
ruleset = JSON.parse(config); | ||
} | ||
catch(e){} | ||
return ruleset; | ||
} | ||
} | ||
|
||
function getAllFiles(arrTargets){ | ||
var arrAllFiles = []; | ||
if(arrTargets.length > 0){ | ||
for(var i=0,l=arrTargets.length;i<l;i++){ | ||
getFiles(arrTargets[i], arrAllFiles); | ||
} | ||
} | ||
else{ | ||
getFiles(process.cwd(), arrAllFiles); | ||
} | ||
return arrAllFiles; | ||
} | ||
|
||
function getFiles(filepath, arrFiles){ | ||
if(fs.existsSync(filepath) === false){ | ||
return; | ||
} | ||
filepath = path.resolve(process.cwd(), filepath); | ||
var stat = fs.statSync(filepath); | ||
if(stat.isFile() && /\.html?$/i.test(filepath)){ | ||
arrFiles.push(filepath); | ||
} | ||
else if(stat.isDirectory()){ | ||
fs.readdirSync(filepath).forEach(function(filename){ | ||
getFiles(filepath + '/' + filename, arrFiles); | ||
}); | ||
} | ||
} | ||
|
||
function processFiles(arrFiles, ruleset){ | ||
var exitcode = 0, | ||
allHintCount = 0; | ||
arrFiles.forEach(function(filepath){ | ||
var hintCount = hintFile(filepath, ruleset); | ||
if(hintCount > 0){ | ||
exitcode = 1; | ||
allHintCount += hintCount; | ||
} | ||
}); | ||
if(allHintCount > 0){ | ||
console.log('\r\n%d problems.'.red, allHintCount); | ||
} | ||
else{ | ||
console.log('No problem.'.green); | ||
} | ||
return exitcode; | ||
} | ||
|
||
function hintFile(filepath, ruleset){ | ||
var html = fs.readFileSync(filepath, 'utf-8'); | ||
var messages = HTMLHint.verify(html, ruleset); | ||
if(messages.length > 0){ | ||
console.log(filepath+':'); | ||
messages.forEach(function(hint){ | ||
console.log('\tline %d, col %d: %s', hint.line, hint.col, hint.message[hint.type === 'error'?'red':'yellow']); | ||
}); | ||
console.log(''); | ||
} | ||
return messages.length; | ||
} | ||
|
||
function quit(code){ | ||
if ((!process.stdout.flush || !process.stdout.flush()) && (parseFloat(process.versions.node) < 0.5)) { | ||
process.once("drain", function () { | ||
process.exit(code || 0); | ||
}); | ||
} else { | ||
process.exit(code || 0); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,146 @@ | ||
#!/usr/bin/env node | ||
|
||
var program = require('commander'), | ||
fs = require('fs'), | ||
path = require('path'), | ||
HTMLHint = require("../index").HTMLHint; | ||
|
||
require('colors'); | ||
|
||
function map(val) { | ||
var objMap = {}; | ||
val.split(',').forEach(function(item){ | ||
var arrItem = item.split(/\s*=\s*/); | ||
objMap[arrItem[0]] = arrItem[1]?arrItem[1]:true; | ||
}); | ||
return objMap; | ||
} | ||
|
||
program.on('--help', function(){ | ||
console.log(' Examples:'); | ||
console.log(''); | ||
console.log(' htmlhint -l'); | ||
console.log(' htmlhint -r tag-pair,id-class-value=underline test.html'); | ||
console.log(' htmlhint -c .htmlhintrc test.html'); | ||
console.log(''); | ||
}); | ||
|
||
program | ||
.version('@VERSION') | ||
.usage('[options] <file ...>') | ||
.option('-l, --list', 'show all of the rules available.') | ||
.option('-c, --config <file>', 'custom configuration file.') | ||
.option('-r, --rules <ruleid, ruleid=value ...>', 'set all of the rules available.', map) | ||
.parse(process.argv); | ||
|
||
if(program.list){ | ||
listRules(); | ||
quit(0); | ||
} | ||
|
||
var arrAllFiles = getAllFiles(program.args); | ||
|
||
var ruleset = program.rules; | ||
if(ruleset === undefined){ | ||
ruleset = getConfig(program.config); | ||
} | ||
|
||
quit(processFiles(arrAllFiles, ruleset)); | ||
|
||
function listRules(){ | ||
var rules = HTMLHint.rules, | ||
rule; | ||
console.log('\r\nAll rules:'); | ||
console.log('======================================'); | ||
for (var id in rules){ | ||
rule = rules[id]; | ||
console.log('\r\n'+rule.id+' :'); | ||
console.log(' '+rule.description); | ||
} | ||
} | ||
|
||
function getConfig(configFile){ | ||
if(configFile === undefined){ | ||
configFile = '.htmlhintrc'; | ||
} | ||
if(fs.existsSync(configFile)){ | ||
var config = fs.readFileSync(configFile, 'utf-8'), | ||
ruleset; | ||
try{ | ||
ruleset = JSON.parse(config); | ||
} | ||
catch(e){} | ||
return ruleset; | ||
} | ||
} | ||
|
||
function getAllFiles(arrTargets){ | ||
var arrAllFiles = []; | ||
if(arrTargets.length > 0){ | ||
for(var i=0,l=arrTargets.length;i<l;i++){ | ||
getFiles(arrTargets[i], arrAllFiles); | ||
} | ||
} | ||
else{ | ||
getFiles(process.cwd(), arrAllFiles); | ||
} | ||
return arrAllFiles; | ||
} | ||
|
||
function getFiles(filepath, arrFiles){ | ||
if(fs.existsSync(filepath) === false){ | ||
return; | ||
} | ||
filepath = path.resolve(process.cwd(), filepath); | ||
var stat = fs.statSync(filepath); | ||
if(stat.isFile() && /\.html?$/i.test(filepath)){ | ||
arrFiles.push(filepath); | ||
} | ||
else if(stat.isDirectory()){ | ||
fs.readdirSync(filepath).forEach(function(filename){ | ||
getFiles(filepath + '/' + filename, arrFiles); | ||
}); | ||
} | ||
} | ||
|
||
function processFiles(arrFiles, ruleset){ | ||
var exitcode = 0, | ||
allHintCount = 0; | ||
arrFiles.forEach(function(filepath){ | ||
var hintCount = hintFile(filepath, ruleset); | ||
if(hintCount > 0){ | ||
exitcode = 1; | ||
allHintCount += hintCount; | ||
} | ||
}); | ||
if(allHintCount > 0){ | ||
console.log('\r\n%d problems.'.red, allHintCount); | ||
} | ||
else{ | ||
console.log('No problem.'.green); | ||
} | ||
return exitcode; | ||
} | ||
|
||
function hintFile(filepath, ruleset){ | ||
var html = fs.readFileSync(filepath, 'utf-8'); | ||
var messages = HTMLHint.verify(html, ruleset); | ||
if(messages.length > 0){ | ||
console.log(filepath+':'); | ||
messages.forEach(function(hint){ | ||
console.log('\tline %d, col %d: %s', hint.line, hint.col, hint.message[hint.type === 'error'?'red':'yellow']); | ||
}); | ||
console.log(''); | ||
} | ||
return messages.length; | ||
} | ||
|
||
function quit(code){ | ||
if ((!process.stdout.flush || !process.stdout.flush()) && (parseFloat(process.versions.node) < 0.5)) { | ||
process.once("drain", function () { | ||
process.exit(code || 0); | ||
}); | ||
} else { | ||
process.exit(code || 0); | ||
} | ||
} |
Oops, something went wrong.