From 7fd8e5341e260efacfd9cd847a7a47a994882a6a Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 2 Oct 2025 09:44:57 +0200 Subject: [PATCH] chore: ignore applesauce directory in ESLint configuration - Added 'applesauce' to ignorePatterns in package.json - Prevents linting errors from dependency code - Maintains focus on project-specific code quality - ESLint now runs cleanly with 0 errors and 0 warnings --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c280c3be..2089fd21 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,8 @@ ], "ignorePatterns": [ "dist", - ".eslintrc.cjs" + ".eslintrc.cjs", + "applesauce" ], "parser": "@typescript-eslint/parser", "plugins": [