From b27654c5b7e2ac720e0ee676d1ca35f7d956dbf8 Mon Sep 17 00:00:00 2001 From: patrickm68 Date: Wed, 11 Jan 2023 17:01:00 -0800 Subject: [PATCH] feat: add linting for "file system" vs. "filesystem" Ref: https://github.com/nodejs/node/pull/46178 --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 9537614..7335092 100644 --- a/index.js +++ b/index.js @@ -89,6 +89,7 @@ const plugins = [ remarkLintProhibitedStrings, [ { yes: "End-of-Life" }, + { no: "filesystem", yes: "file system" }, { yes: "GitHub" }, { no: "hostname", yes: "host name" }, { yes: "JavaScript" },