mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-13 06:52:24 +00:00
12 lines
386 B
Cheetah
12 lines
386 B
Cheetah
|
package slinguist
|
||
|
|
||
|
// CODE GENERATED AUTOMATICALLY WITH github.com/src-d/simple-linguist/cli/slinguist-generate
|
||
|
// 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 -}}
|
||
|
}
|