Skip to content

Commit

Permalink
Add support for additional file extensions
Browse files Browse the repository at this point in the history
Extended the list of supported file extensions in the code map to include .yaml, .yml, .json, .xml, and .mod. This update ensures broader compatibility for various file types in generating output.
  • Loading branch information
spachava753 committed Oct 11, 2024
1 parent d9b0cf6 commit 5b3c256
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions codemap/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ var supportedLanguages = map[string]bool{
".js": true,
".ts": true,
".sql": true,
".yaml": true,
".yml": true,
".json": true,
".xml": true,
".mod": true,
}

// GenerateOutput creates the XML-like output for the code map using AST
Expand Down

0 comments on commit 5b3c256

Please sign in to comment.