Skip to content

Commit

Permalink
fix: update language extension mapping
Browse files Browse the repository at this point in the history
Update the language extension mapping to correctly represent the "go" language.
  • Loading branch information
Velka-DEV committed Apr 20, 2024
1 parent 9f5de76 commit 3512e97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fn main() {
let exclude_patterns: Vec<&str> = args.exclude.iter().map(|s| s.as_str()).collect();

let mut extension_map = HashMap::new();
extension_map.insert("go", "golang");
extension_map.insert("go", "go");
extension_map.insert("rs", "rust");
extension_map.insert("cs", "csharp");
extension_map.insert("py", "python");
Expand Down

0 comments on commit 3512e97

Please sign in to comment.