mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
c6d74bca66
fixed autogenerated comment changed constant types names GetLanguageByShebang doesn't print errors languageInfo struct change to have only necessary fields GetLanguageByShebang has a comment now
12 lines
388 B
Cheetah
12 lines
388 B
Cheetah
package slinguist
|
|
|
|
// CODE GENERATED AUTOMATICALLY WITH gopkg.in/src-d/simple-linguist.v1/internal/code-generator
|
|
// THIS FILE SHOULD NOT BE EDITED BY HAND
|
|
// Extracted from github/linguist commit: {{ getCommit }}
|
|
|
|
var languagesByInterpreter = map[string][]string{
|
|
{{range $interpreter, $languages := . -}}
|
|
"{{ $interpreter }}": { {{- $languages | formatStringSlice -}} },
|
|
{{end -}}
|
|
}
|