From 510655ff536bededf490f48b274d737501f27c15 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Fri, 22 Feb 2019 01:45:52 +0000 Subject: [PATCH] add End-Of-Life to prohibited strings Refs: https://github.com/nodejs/node/pull/26251 --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 1cdd1224..3198c67b 100644 --- a/index.js +++ b/index.js @@ -47,6 +47,7 @@ module.exports.plugins = [ [ require("remark-lint-prohibited-strings"), [ + { no: "End-Of-Life", yes: "End-of-Life" }, { no: "Github", yes: "GitHub" }, { no: "Javascript", yes: "JavaScript" }, { no: "Node.JS", yes: "Node.js" },