From f4d3206a74e835b5e3795ffa8fb2ae5e16250c56 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 22 Apr 2026 21:17:49 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20remove=20commented-out=20package?= =?UTF-8?q?=20lock=20exclusion=20patterns?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed commented-out regex patterns for `package-lock.json` and `yarn.lock` in `codeconcat/config.py`. These were dead code and removing them improves maintainability. Co-authored-by: lguibr <39469905+lguibr@users.noreply.github.com> --- codeconcat/config.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/codeconcat/config.py b/codeconcat/config.py index 9fe3ec3..861bf66 100644 --- a/codeconcat/config.py +++ b/codeconcat/config.py @@ -55,9 +55,6 @@ r"npm-debug\.log.*", r"yarn-debug\.log.*", r"yarn-error\.log.*", - # Maybe keep lock files? Let's exclude build outputs for now. - # r"package-lock\.json$", - # r"yarn\.lock$", r"(?:^|/)dist/", # Common JS build output dir r"(?:^|/)build/", # Common JS build output dir r"(?:^|/)coverage/", # JS Coverage reports