Skip to content

Commit

Permalink
feat: add more langs
Browse files Browse the repository at this point in the history
  • Loading branch information
williamfzc committed Apr 22, 2023
1 parent 1ef31ea commit 2173592
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions collector/sibyl.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,18 @@ func IsSupported(path string) bool {
if strings.HasSuffix(path, ".java") {
return true
}
if strings.HasSuffix(path, ".kt") {
return true
}
if strings.HasSuffix(path, ".go") {
return true
}
if strings.HasSuffix(path, ".py") {
return true
}
if strings.HasSuffix(path, ".js") {
return true
}
return false
}

Expand Down

0 comments on commit 2173592

Please sign in to comment.