-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: gochecknoinits shadow name #4698
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ldez
added
bug
Something isn't working
linter: update
Update the linter implementation inside golangci-lint
labels
May 5, 2024
bombsimon
approved these changes
May 5, 2024
edigaryev
added a commit
to cirruslabs/cirrus-cli
that referenced
this pull request
May 7, 2024
jimmidyson
added a commit
to nutanix-cloud-native/cluster-api-runtime-extensions-nutanix
that referenced
this pull request
May 8, 2024
See golangci/golangci-lint#4697 for details and waiting on golangci/golangci-lint#4698 to be released before we can revert this fix.
edigaryev
added a commit
to cirruslabs/cirrus-cli
that referenced
this pull request
May 8, 2024
* Use Buf Schema Registry * Update Buf credentials Co-authored-by: Fedor Korotkov <[email protected]> * Update Buf credentials Co-authored-by: Fedor Korotkov <[email protected]> * Work around golangci/golangci-lint#4698 --------- Co-authored-by: Fedor Korotkov <[email protected]>
jimmidyson
added a commit
to nutanix-cloud-native/cluster-api-runtime-extensions-nutanix
that referenced
this pull request
May 8, 2024
See golangci/golangci-lint#4697 for details and waiting on golangci/golangci-lint#4698 to be released before we can revert this fix.
apricote
pushed a commit
to hetznercloud/fleeting-plugin-hetzner
that referenced
this pull request
Sep 12, 2024
…ercloud/fleeting-plugin-hetzner!51) This MR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [golangci/golangci-lint](https://github.com/golangci/golangci-lint) | repository | patch | `v1.58.0` -> `v1.58.1` | Note: The `pre-commit` manager in Renovate is not supported by the `pre-commit` maintainers or community. Please do not report any problems there, instead [create a Discussion in the Renovate repository](https://github.com/renovatebot/renovate/discussions/new) if you have any questions. --- ### Release Notes <details> <summary>golangci/golangci-lint (golangci/golangci-lint)</summary> ### [`v1.58.1`](https://github.com/golangci/golangci-lint/releases/tag/v1.58.1) [Compare Source](golangci/golangci-lint@v1.58.0...v1.58.1) `golangci-lint` is a free and open-source project built by volunteers. If you value it, consider supporting us, the [maintainers](https://github.com/golangci/golangci-lint?tab=readme-ov-file#contributors) and [linter authors](https://golangci-lint.run/product/thanks/). We appreciate it! ❤️ For key updates, see the [changelog](https://golangci-lint.run/product/changelog/#​1581). #### Changelog - [`dc28153`](golangci/golangci-lint@dc281531) build(deps): bump github.com/4meepo/tagalign from 1.3.3 to 1.3.4 ([#​4705](golangci/golangci-lint#4705)) - [`9116634`](golangci/golangci-lint@9116634a) build(deps): bump github.com/ghostiam/protogetter from 0.3.5 to 0.3.6 ([#​4707](golangci/golangci-lint#4707)) - [`d64e1de`](golangci/golangci-lint@d64e1de7) build(deps): bump golang.org/x/tools from 0.20.0 to 0.21.0 ([#​4706](golangci/golangci-lint#4706)) - [`ee97dbf`](golangci/golangci-lint@ee97dbf7) build(deps): bump golangci/golangci-lint-action from 5.1.0 to 5.3.0 ([#​4701](golangci/golangci-lint#4701)) - [`4532eb9`](golangci/golangci-lint@4532eb98) fix: gochecknoinits shadow name ([#​4698](golangci/golangci-lint#4698)) - [`6767d7c`](golangci/golangci-lint@6767d7c2) fix: remove GitHub Action problem matchers ([#​4700](golangci/golangci-lint#4700)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNTEuMSIsInVwZGF0ZWRJblZlciI6IjM3LjM1MS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
A variable
name
was shadowed by a constantname
.I renamed the constants
name
tolinterName
to avoid confusion.Fixes #4697