Skip to content

Commit

Permalink
Add “click here” to list of bad link labels
Browse files Browse the repository at this point in the history
Co-Authored-By: Ben Myers <[email protected]>
  • Loading branch information
delucis and BenDMyers committed Dec 2, 2022
1 parent 453c582 commit e104538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lib/linkcheck/checks/good-link-label.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { CheckBase, CheckHtmlPageContext } from '../base/check';
import { IssueType } from '../base/issue';

/** List of labels that are insufficiently descriptive for a link. */
const blocklist = new Set(['read more', 'here', 'more']);
const blocklist = new Set(['read more', 'click here', 'here', 'more']);

export class GoodLabels extends CheckBase {
private static readonly BadLabel = new IssueType({
Expand Down

0 comments on commit e104538

Please sign in to comment.