-
-
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
Specify required version number in config #3912
Comments
Hey, thank you for opening your first Issue ! 🙂 If you would like to contribute we have a guide for contributors. Duplicate of #563 |
Request seconded. What I'd like to see is be the ability to specify an exact version, or "greater-than-or-equal-to" version. Exact version is obviously useful for maximum stablity/reproducibility, >= for cases where one wants to e.g. follow the latest with the GH action, while knowing that the config has been created with some lower version bound in mind, and wanting to communicate that for e.g. running locally. For example, https://pkg.go.dev/github.com/Masterminds/semver/v3 contains features to parse and compare versions and constraints; could be applicable even though golangci-lint doesn't appear to follow semver fully. It provides all comparisons I think one can ask for. |
One alternative could be to use the docker approach instead. Depending on your setup you can bump how I get it's not ideal though. It's been mentioned before to have When I used to have this need and built a "version manager" for golangci-lint; gclv. It allows you to specify a version in |
What we do at my work is use https://pre-commit.com/ for this - a |
Your feature request related to a problem? Please describe.
As a team grows, it's difficult to ensure that we're all running the same version of
golangci-lint
. This causes inconsistent linting across the team, which was most recently noticed with the upgrade to 1.53.Describe the solution you'd like.
By specifying a required version number in the config,
golangci-lint
can enforce that it matches the required version before running.In the ideal case, the required version number would also be respected by
golangci-lint-action
, meaning there wouldn't be a need to manually keep the version number in sync in multiple places (e.g., in.github/workflows/ci.yaml
and.golangci-lint.yaml
.Describe alternatives you've considered.
We solved this by enforcing a local version in our
Taskfile.yaml
andci.yaml
:./Taskfile.yaml
:./.github/workflows/ci.yaml
:Additional context.
Similar to what I'm thinking of,
npm
has a solution to this withengines
andengine-strict
.The text was updated successfully, but these errors were encountered: