Skip to content

Commit f7c9c24

Browse files
aksOpsclaude
andcommitted
Add .markdown extension support (quick win: +1,586 files covered)
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 4ef716a commit f7c9c24

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/code_intelligence/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class DiscoveryConfig(BaseModel):
1616
".java", ".py", ".ts", ".tsx", ".js", ".jsx",
1717
".xml", ".yaml", ".yml", ".json", ".properties",
1818
".gradle", ".gradle.kts", ".sql", ".graphql", ".gql",
19-
".proto", ".md",
19+
".proto", ".md", ".markdown",
2020
".cs", ".go", ".tf", ".tfvars", ".hcl",
2121
".cpp", ".cc", ".cxx", ".hpp", ".c", ".h",
2222
".sh", ".bash", ".zsh", ".ps1", ".psm1", ".psd1",

src/code_intelligence/discovery/file_discovery.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ class ChangeType(Enum):
4242
".gql": "graphql",
4343
".proto": "proto",
4444
".md": "markdown",
45+
".markdown": "markdown",
4546
".bicep": "bicep",
4647
".tf": "terraform",
4748
".tfvars": "terraform",

0 commit comments

Comments
 (0)