From 168400f71cd80ed11c70be22eab4953bba07d1ff Mon Sep 17 00:00:00 2001 From: Jon Koops Date: Thu, 7 Dec 2023 11:50:25 +0100 Subject: [PATCH] Ignore `target` directory when running ESLint (#25371) Signed-off-by: Jon Koops --- js/.eslintrc.cjs | 1 + 1 file changed, 1 insertion(+) diff --git a/js/.eslintrc.cjs b/js/.eslintrc.cjs index 143cf00474..32fd77c799 100644 --- a/js/.eslintrc.cjs +++ b/js/.eslintrc.cjs @@ -4,6 +4,7 @@ module.exports = { ignorePatterns: [ "node_modules", "dist", + "target", "keycloak-theme", "server", // Keycloak JS follows a completely different and outdated style, so we'll exclude it for now.