releaser: Fix golint issues
authorCameron Moore <moorereason@gmail.com>
Thu, 6 Sep 2018 19:50:54 +0000 (14:50 -0500)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 7 Sep 2018 06:25:51 +0000 (08:25 +0200)
struct field HtmlURL should be HTMLURL

releaser/git.go
releaser/github.go
releaser/releasenotes_writer.go

index 9999636fee37c0e2599dd0e169945aaf2ed8b841..9527b511372104cc7324aa1bf14c8a792172a03e 100644 (file)
@@ -167,8 +167,8 @@ type countribCount struct {
 }
 
 func (c countribCount) AuthorLink() string {
-       if c.GitHubAuthor.HtmlURL != "" {
-               return fmt.Sprintf("[@%s](%s)", c.GitHubAuthor.Login, c.GitHubAuthor.HtmlURL)
+       if c.GitHubAuthor.HTMLURL != "" {
+               return fmt.Sprintf("[@%s](%s)", c.GitHubAuthor.Login, c.GitHubAuthor.HTMLURL)
        }
 
        if !strings.Contains(c.Author, "@") {
index 11f617007fb6daa7d53794512a1ecf0f9cff46f2..ba019ccad014d150b4e612c185b828e5bbd224c2 100644 (file)
@@ -31,13 +31,13 @@ func newGitHubAPI(repo string) *gitHubAPI {
 
 type gitHubCommit struct {
        Author  gitHubAuthor `json:"author"`
-       HtmlURL string       `json:"html_url"`
+       HTMLURL string       `json:"html_url"`
 }
 
 type gitHubAuthor struct {
        ID        int    `json:"id"`
        Login     string `json:"login"`
-       HtmlURL   string `json:"html_url"`
+       HTMLURL   string `json:"html_url"`
        AvatarURL string `json:"avatar_url"`
 }
 
@@ -45,7 +45,7 @@ type gitHubRepo struct {
        ID           int    `json:"id"`
        Name         string `json:"name"`
        Description  string `json:"description"`
-       HtmlURL      string `json:"html_url"`
+       HTMLURL      string `json:"html_url"`
        Stars        int    `json:"stargazers_count"`
        Contributors []gitHubContributor
 }
@@ -53,7 +53,7 @@ type gitHubRepo struct {
 type gitHubContributor struct {
        ID            int    `json:"id"`
        Login         string `json:"login"`
-       HtmlURL       string `json:"html_url"`
+       HTMLURL       string `json:"html_url"`
        Contributions int    `json:"contributions"`
 }
 
index c0ca39fd8e8cdda9330bb2fde5f6482dc1b6306c..06e621ff25b2823ac4d227d577a44367ee717f6a 100644 (file)
@@ -125,16 +125,16 @@ var templateFuncs = template.FuncMap{
                return fmt.Sprintf(issueLinkTemplate, id, id)
        },
        "commitURL": func(info gitInfo) string {
-               if info.GitHubCommit.HtmlURL == "" {
+               if info.GitHubCommit.HTMLURL == "" {
                        return ""
                }
-               return fmt.Sprintf(linkTemplate, info.Hash, info.GitHubCommit.HtmlURL)
+               return fmt.Sprintf(linkTemplate, info.Hash, info.GitHubCommit.HTMLURL)
        },
        "authorURL": func(info gitInfo) string {
                if info.GitHubCommit.Author.Login == "" {
                        return ""
                }
-               return fmt.Sprintf(linkTemplate, "@"+info.GitHubCommit.Author.Login, info.GitHubCommit.Author.HtmlURL)
+               return fmt.Sprintf(linkTemplate, "@"+info.GitHubCommit.Author.Login, info.GitHubCommit.Author.HTMLURL)
        },
 }