From e769c0ef7ebfb3a8fc15d31e3d36757b8d881289 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Sun, 7 Jan 2024 07:03:56 +1100 Subject: [PATCH] chore: ignore `/docs` in license checker tool --- _tools/check_licence.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/_tools/check_licence.ts b/_tools/check_licence.ts index 7c7721ae2f41..afe618327cba 100644 --- a/_tools/check_licence.ts +++ b/_tools/check_licence.ts @@ -10,6 +10,7 @@ const EXCLUDED_DIRS = [ "**/crypto/_wasm/target", "**/crypto/_wasm/lib", "**/.git", + "**/docs/**", ]; const ROOT = new URL("../", import.meta.url);