From d8977b8cf48b6d3f515332e741322b97b893ee10 Mon Sep 17 00:00:00 2001 From: Ghulam Ahmed Date: Sat, 8 Mar 2025 22:59:52 +0300 Subject: [PATCH] chore: Added package-lock.json to ignore-content in default settings --- repo_to_text/cli/cli.py | 1 + tests/test_core.py | 1 + 2 files changed, 2 insertions(+) diff --git a/repo_to_text/cli/cli.py b/repo_to_text/cli/cli.py index c3b3166..f753585 100644 --- a/repo_to_text/cli/cli.py +++ b/repo_to_text/cli/cli.py @@ -38,6 +38,7 @@ def create_default_settings_file() -> None: ignore-content: - "README.md" - "LICENSE" + - "package-lock.json" """) with open('.repo-to-text-settings.yaml', 'w', encoding='utf-8') as f: f.write(default_settings) diff --git a/tests/test_core.py b/tests/test_core.py index 1882388..97294dd 100644 --- a/tests/test_core.py +++ b/tests/test_core.py @@ -48,6 +48,7 @@ ignore-tree-and-content: - ".repo-to-text-settings.yaml" ignore-content: - "README.md" + - "package-lock.json" """ }