Merge pull request #25 from TheGhulam/main

chore: Added package-lock.json to ignore-content in default settings
This commit is contained in:
Kirill Markin 2025-03-12 17:06:40 +02:00 committed by GitHub
commit 58b4b23eae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -38,6 +38,7 @@ def create_default_settings_file() -> None:
ignore-content: ignore-content:
- "README.md" - "README.md"
- "LICENSE" - "LICENSE"
- "package-lock.json"
""") """)
with open('.repo-to-text-settings.yaml', 'w', encoding='utf-8') as f: with open('.repo-to-text-settings.yaml', 'w', encoding='utf-8') as f:
f.write(default_settings) f.write(default_settings)

View file

@ -48,6 +48,7 @@ ignore-tree-and-content:
- ".repo-to-text-settings.yaml" - ".repo-to-text-settings.yaml"
ignore-content: ignore-content:
- "README.md" - "README.md"
- "package-lock.json"
""" """
} }