From ec26a76690c00ca3ae5ce7593414dedfc008eea4 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Wed, 14 Jan 2026 11:02:21 -0600 Subject: [PATCH] Add packaging directory to ESLint configuration - Updated the ESLint configuration to include the 'packaging' directory in the list of ignored paths. - This change ensures that packaging-related files are not linted, streamlining the development process. --- eslint.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index 7e3bf46..1c4ecbc 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -33,6 +33,7 @@ export default [ "**/*.proto", "**/tests/**", "**/.pnpm-store/**", + "**/packaging/**", ], }, {