mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
13d3d66d37
Refactoring, consisting of - remove unused method `isAuxiliaryLanguage` and `FileCountList` in order to reduce public API surfaces (go/java) - add GoDoc to public APIs - ci: java profile use latest go src It also now mimics https://docs.travis-ci.com/user/languages/go/#go-import-path for non-go build image, as code relies on internal imports. TEST PLAN: - make test
17 lines
598 B
Go
17 lines
598 B
Go
/*
|
|
Package enry implements multiple strategies for programming language identification.
|
|
|
|
Identification is made based on file name and file content using a seriece
|
|
of strategies to narrow down possible option.
|
|
Each strategy is available as a separate API call, as well as a main enty point
|
|
|
|
GetLanguage(filename string, content []byte) (language string)
|
|
|
|
It is a port of the https://github.com/github/linguist from Ruby.
|
|
Upstream Linguist YAML files are used to generate datastructures for data
|
|
package.
|
|
*/
|
|
package enry // import "gopkg.in/src-d/enry.v1"
|
|
|
|
//go:generate make code-generate
|