Skip to content

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

Merged
merged 2 commits into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,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?
options:
Copy link
Member

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.

- I don't know
- Official GitHub Action
- Official binary
- Brew
- MacPorts
- Chocolatey
- Scoop
- Docker
- go install
- Tools pattern
- go tool
- AUR
- Nix
- Deb
- RPM
- Other Linux package manager
- Other
validations:
required: true

- type: textarea
id: problem
attributes:
Expand Down
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Copy link
Member

Choose a reason for hiding this comment

The 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?

Copy link
Member Author

Choose a reason for hiding this comment

The 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
validations:
required: true

- type: textarea
id: problem
attributes:
Expand Down
Loading