Skip to content

Commit 4db70e6

Browse files
committed
Add file formats
1 parent bbd3154 commit 4db70e6

3 files changed

Lines changed: 256 additions & 245 deletions

File tree

contxt/repo_flattener.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,8 @@ def __init__(self, input_dir=None, output_dir=None, include_ignored=False, confi
201201
"mediawiki",
202202
"creole",
203203
"mdc", # Added .mdc extension for documentation
204+
"sysml",
205+
"kerml",
204206
# Data Formats
205207
"csv",
206208
"tsv",
@@ -331,7 +333,15 @@ def should_ignore(self, item):
331333
"poetry.lock",
332334
"pdm.lock",
333335
"npm-shrinkwrap.json",
334-
"bun.lockb"
336+
"bun.lockb",
337+
"Pipfile.lock",
338+
"go.sum",
339+
"mix.lock",
340+
"pubspec.lock",
341+
"vcpkg.json",
342+
"conan.lock",
343+
"deno.lock",
344+
"swift-package.lock"
335345
}:
336346
logger.debug(f"Ignoring {item} because it's a lock file")
337347
return True

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "contxt"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = """A CLI utility for analyzing and flattening contextual informationinto consolidated files with metadata."""
55
requires-python = ">=3.11"
66
dependencies = [

0 commit comments

Comments
 (0)