Update README.md with rules and examples.

This commit is contained in:
David Anson 2015-03-14 22:34:28 -07:00
parent f252f4f498
commit 3217272971
3 changed files with 120 additions and 16 deletions

View file

@ -8,6 +8,8 @@ var shared = require("./shared");
var ruleToDescription = {};
rules.forEach(function forRule(rule) {
ruleToDescription[rule.name] = rule.desc;
// The following is useful for updating README.md
// console.log("* " + rule.name + " - " + rule.desc);
});
function Results() { }