aboutsummaryrefslogtreecommitdiff
path: root/exampleData/ruleSets/trivialReport.js
blob: d4701cadc5a83c294877193d74ca69b84b750029 (plain)
1
2
3
4
5
6
exports.name = 'Test rule';
exports.description = 'An empty test rule';

exports.rule = function(report) {
  report.error('test error', null);
};