From b272803b31d83742a4976b7f749f98c8b0e75768 Mon Sep 17 00:00:00 2001 From: Rich Trott 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 95376145..7335092c 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" },