Skip to content

Commit dde09e5

Browse files
authored
dev: update issue templates
1 parent d2cefe0 commit dde09e5

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
Thank you for creating the issue!
11+
12+
- [ ] Yes, I'm using a binary release within 2 latest major releases. Only such installations are supported.
13+
- [ ] Yes, I've searched similar issues on GitHub and didn't find any.
14+
- [ ] Yes, I've included all information below (version, config, etc).
15+
16+
Please include the following information:
17+
18+
<details><summary>Version of golangci-lint</summary>
19+
20+
```console
21+
$ golangci-lint --version
22+
# paste output here
23+
```
24+
25+
</details>
26+
27+
<details><summary>Config file</summary>
28+
29+
```console
30+
$ cat .golangci.yml
31+
# paste output here
32+
```
33+
34+
</details>
35+
36+
<details><summary>Go environment</summary>
37+
38+
```console
39+
$ go version && go env
40+
# paste output here
41+
```
42+
43+
</details>
44+
45+
<details><summary>Verbose output of running</summary>
46+
47+
```console
48+
$ golangci-lint cache clean
49+
$ golangci-lint run -v
50+
# paste output here
51+
```
52+
53+
</details>

0 commit comments

Comments
 (0)