-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
dev: ask about installation inside issue template #5424
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,31 @@ body: | |
- label: I agree to follow this project's [Code of Conduct](https://github.com/golangci/golangci-lint?tab=coc-ov-file) | ||
required: true | ||
|
||
- type: dropdown | ||
id: install | ||
attributes: | ||
label: How did you install golangci-lint? | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure I follow why this would be relevant when doing a feature request? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can see that as a way to get information about our users. But in some cases, this is important: we have issues related to usage that we don't want to promote (like using golangci-lint as a lib). |
||
options: | ||
- I don't know | ||
- Official GitHub Action | ||
- Official binary | ||
- Docker | ||
- Brew | ||
- MacPorts | ||
- AUR | ||
- Nix | ||
- Deb | ||
- RPM | ||
- Other Linux package manager | ||
- Chocolatey | ||
- Scoop | ||
- go install | ||
- Tools pattern | ||
- go tool | ||
- Other | ||
ldez marked this conversation as resolved.
Show resolved
Hide resolved
|
||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: problem | ||
attributes: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder if it's not common enough for people to run the VS Code or IntelliJ/GoLand plugin (or some vim plugin such as
Mason
) that it should be part of this? Either an option like "Via my editor/IDE" or the most common ones like IntelliJ and VS Code.