From d0115acdf2b8cfd64c8b7eef4d322950ab34c6ff Mon Sep 17 00:00:00 2001 From: Frank Dana Date: Fri, 4 May 2018 07:12:31 -0400 Subject: [PATCH] Change target of CSSLint "full list of rules" link The "See a full list of rules" link in the CSSLint settings popup currently points to https://github.com/CSSLint/csslint/wiki/Rules-by-ID which is... rather sparse. Instead, link to https://github.com/CSSLint/csslint/wiki/Rules It contains all of the same rules / documentation-page links, but presents slightly more information to the user up front, without forcing them to click on everty rule for an explanation of what it is. --- edit/lint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edit/lint.js b/edit/lint.js index 1614e9e4..87d092e3 100644 --- a/edit/lint.js +++ b/edit/lint.js @@ -363,7 +363,7 @@ function showLintHelp() { : 'https://github.com/CSSLint/csslint/issues/535'; let headerLink, template, csslintRules; if (linter === 'csslint') { - headerLink = $createLink('https://github.com/CSSLint/csslint/wiki/Rules-by-ID', 'CSSLint'); + headerLink = $createLink('https://github.com/CSSLint/csslint/wiki/Rules', 'CSSLint'); template = ruleID => { const rule = csslintRules.find(rule => rule.id === ruleID); return rule &&