Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Magik and PKl languages that are not handled by Linguist #790

Merged
merged 7 commits into from
Jun 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions internal/languages/language.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// This file wraps the logic of go-enry (https://github.com/go-enry/go-enry) to support additional languages.
// go-enry is based off of a package called Linguist (https://github.com/github/linguist)
// and sometimes programming languages may not be supported by Linguist
mmanela marked this conversation as resolved.
Show resolved Hide resolved
// or may take a while to get merged in and make it into go-enry. This wrapper
// gives us flexibility to support languages in those cases. We list additional languages
// in this file and remove them once they make it into Linguist and go-enry
package languages
mmanela marked this conversation as resolved.
Show resolved Hide resolved

import (
Expand Down
Loading