From c12f6aa87481bcc97c07db60d1e03f78a2ae6d4b Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Tue, 2 Nov 2021 20:25:21 +0200 Subject: [PATCH] docs: change Github to GitHub in comments and docs (#2341) --- .golangci.example.yml | 2 +- README.md | 2 +- docs/src/docs/index.mdx | 2 +- pkg/printers/github.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.golangci.example.yml b/.golangci.example.yml index bd13f403af09..a78257bf70e8 100644 --- a/.golangci.example.yml +++ b/.golangci.example.yml @@ -812,7 +812,7 @@ severity: # selected out format. # - Code climate: https://docs.codeclimate.com/docs/issues#issue-severity # - Checkstyle: https://checkstyle.sourceforge.io/property_types.html#severity - # - Github: https://help.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message + # - GitHub: https://help.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message default-severity: error # The default value is false. diff --git a/README.md b/README.md index 6103233890ab..c53c093e9def 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Documentation is hosted at https://golangci-lint.run. [![License](https://img.shields.io/github/license/golangci/golangci-lint)](/LICENSE) [![Release](https://img.shields.io/github/release/golangci/golangci-lint.svg)](https://github.com/golangci/golangci-lint/releases/latest) [![Docker](https://img.shields.io/docker/pulls/golangci/golangci-lint)](https://hub.docker.com/r/golangci/golangci-lint) -[![Github Releases Stats of golangci-lint](https://img.shields.io/github/downloads/golangci/golangci-lint/total.svg?logo=github)](https://somsubhra.github.io/github-release-stats/?username=golangci&repository=golangci-lint) +[![GitHub Releases Stats of golangci-lint](https://img.shields.io/github/downloads/golangci/golangci-lint/total.svg?logo=github)](https://somsubhra.github.io/github-release-stats/?username=golangci&repository=golangci-lint) ## Contributors diff --git a/docs/src/docs/index.mdx b/docs/src/docs/index.mdx index 693dd5a75d67..8c573031e989 100644 --- a/docs/src/docs/index.mdx +++ b/docs/src/docs/index.mdx @@ -9,7 +9,7 @@ import { IconContainer } from "lib/icons"; [![License](https://img.shields.io/github/license/golangci/golangci-lint)](/LICENSE) [![Release](https://img.shields.io/github/release/golangci/golangci-lint.svg)](https://github.com/golangci/golangci-lint/releases/latest) [![Docker](https://img.shields.io/docker/pulls/golangci/golangci-lint)](https://hub.docker.com/r/golangci/golangci-lint) -[![Github Releases Stats of golangci-lint](https://img.shields.io/github/downloads/golangci/golangci-lint/total.svg?logo=github)](https://somsubhra.com/github-release-stats/?username=golangci&repository=golangci-lint) +[![GitHub Releases Stats of golangci-lint](https://img.shields.io/github/downloads/golangci/golangci-lint/total.svg?logo=github)](https://somsubhra.com/github-release-stats/?username=golangci&repository=golangci-lint) `golangci-lint` is a Go linters aggregator. diff --git a/pkg/printers/github.go b/pkg/printers/github.go index 4ebc26685784..c7186ac273ed 100644 --- a/pkg/printers/github.go +++ b/pkg/printers/github.go @@ -13,7 +13,7 @@ type github struct { const defaultGithubSeverity = "error" -// NewGithub output format outputs issues according to Github actions format: +// NewGithub output format outputs issues according to GitHub actions format: // https://help.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message func NewGithub() Printer { return &github{}