From 744a0b80429b79e41208db01f2775fd9079f55a6 Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Sat, 1 Mar 2025 10:40:41 +0100 Subject: [PATCH] chore: ignore build related folder in eslint config --- eslint.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eslint.config.js b/eslint.config.js index 932aa3da5..beeef45e0 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -20,5 +20,8 @@ export default tseslint.config( rules: { // add rule overrides here } + }, + { + ignores: ["build/*", "dist/*", "src/public/app-dist/*"] } );