mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 05:22:23 +00:00
31 lines
949 B
Go
31 lines
949 B
Go
/*
|
|
Package enry identifies programming languages.
|
|
|
|
Identification is based on file name and content using a series
|
|
of strategies to narrow down possible options.
|
|
Each strategy is available as a separate API call, as well as though the 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 "github.com/go-enry/go-enry/v2"
|
|
|
|
//go:generate make code-generate
|
|
|
|
import "github.com/go-enry/go-enry/v2/data"
|
|
|
|
// Type represent language's type. Either data, programming, markup, prose, or unknown.
|
|
type Type int
|
|
|
|
// Type's values.
|
|
const (
|
|
Unknown Type = Type(data.TypeUnknown)
|
|
Data = Type(data.TypeData)
|
|
Programming = Type(data.TypeProgramming)
|
|
Markup = Type(data.TypeMarkup)
|
|
Prose = Type(data.TypeProse)
|
|
)
|