* Outputs all available rules to the CLI. * @return {void}
()
| 124 | * @return {void} |
| 125 | */ |
| 126 | function printRules() { |
| 127 | api.print(""); |
| 128 | var rules = CSSLint.getRules(); |
| 129 | rules.forEach(function(rule) { |
| 130 | api.print(rule.id + "\n " + rule.desc + "\n"); |
| 131 | }); |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * Given a file name and options, run verification and print formatted output. |
no outgoing calls
no test coverage detected
searching dependent graphs…