mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
added comments to constants
This commit is contained in:
parent
ef39403555
commit
9a9968dca0
@ -8,26 +8,31 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
// languages.go generation
|
||||||
languagesYAML = ".linguist/lib/linguist/languages.yml"
|
languagesYAML = ".linguist/lib/linguist/languages.yml"
|
||||||
langFile = "languages.go"
|
langFile = "languages.go"
|
||||||
languagesTmplPath = "internal/code-generator/assets/languages.go.tmpl"
|
languagesTmplPath = "internal/code-generator/assets/languages.go.tmpl"
|
||||||
languagesTmpl = "languages.go.tmpl"
|
languagesTmpl = "languages.go.tmpl"
|
||||||
|
|
||||||
|
// content.go generation
|
||||||
heuristicsRuby = ".linguist/lib/linguist/heuristics.rb"
|
heuristicsRuby = ".linguist/lib/linguist/heuristics.rb"
|
||||||
contentFile = "content.go"
|
contentFile = "content.go"
|
||||||
contentTmplPath = "internal/code-generator/assets/content.go.tmpl"
|
contentTmplPath = "internal/code-generator/assets/content.go.tmpl"
|
||||||
contentTmpl = "content.go.tmpl"
|
contentTmpl = "content.go.tmpl"
|
||||||
|
|
||||||
|
// vendor_matchers.go generation
|
||||||
vendorYAML = ".linguist/lib/linguist/vendor.yml"
|
vendorYAML = ".linguist/lib/linguist/vendor.yml"
|
||||||
vendorFile = "vendor_matchers.go"
|
vendorFile = "vendor_matchers.go"
|
||||||
vendorTmplPath = "internal/code-generator/assets/vendor.go.tmpl"
|
vendorTmplPath = "internal/code-generator/assets/vendor.go.tmpl"
|
||||||
vendorTmpl = "vendor.go.tmpl"
|
vendorTmpl = "vendor.go.tmpl"
|
||||||
|
|
||||||
|
// documentation_matchers.go generation
|
||||||
documentationYAML = ".linguist/lib/linguist/documentation.yml"
|
documentationYAML = ".linguist/lib/linguist/documentation.yml"
|
||||||
documentationFile = "documentation_matchers.go"
|
documentationFile = "documentation_matchers.go"
|
||||||
documentationTmplPath = "internal/code-generator/assets/documentation.go.tmpl"
|
documentationTmplPath = "internal/code-generator/assets/documentation.go.tmpl"
|
||||||
documentationTmpl = "documentation.go.tmpl"
|
documentationTmpl = "documentation.go.tmpl"
|
||||||
|
|
||||||
|
// type.go generation
|
||||||
typeFile = "type.go"
|
typeFile = "type.go"
|
||||||
typeTmplPath = "internal/code-generator/assets/type.go.tmpl"
|
typeTmplPath = "internal/code-generator/assets/type.go.tmpl"
|
||||||
typeTmpl = "type.go.tmpl"
|
typeTmpl = "type.go.tmpl"
|
||||||
|
Loading…
Reference in New Issue
Block a user