aboutsummaryrefslogtreecommitdiff
path: root/guidelines/wikipedia/src/bullets.js
blob: 80c5c4b853b1f460e72d2065db288eb4012f1761 (plain)
1
2
3
4
5
6
7
8
exports.name = "Minimize use of bullet points";
exports.description = "Bullet points should be minimized in the body and lead of the article, if they are used at all.";

exports.rule = function(report) {
  $5('#mw-content-text > ul, #mw-content-text > ol').each(function() {
    report.warning('Minimize use of bullet points.', this);
  });
};