You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Create a report to help us improve."
3
+
labels: [bug]
4
+
body:
5
+
- type: checkboxes
6
+
id: terms
7
+
attributes:
8
+
label: Welcome
9
+
options:
10
+
- label: Yes, I'm using a binary release within 2 latest [releases](https://github.com/golangci/golines/releases). Only such installations are supported.
11
+
required: true
12
+
- label: Yes, I've searched similar [issues on GitHub](https://github.com/golangci/golines/issues) and didn't find any.
13
+
required: true
14
+
- label: I agree to follow this project's [Code of Conduct](https://github.com/golangci/golines?tab=coc-ov-file)
15
+
required: true
16
+
17
+
- type: dropdown
18
+
id: install
19
+
attributes:
20
+
label: How did you install golines?
21
+
options:
22
+
- I don't know
23
+
- Official binary
24
+
- Brew
25
+
- MacPorts
26
+
- Chocolatey
27
+
- Scoop
28
+
- Docker
29
+
- go install
30
+
- Tools pattern
31
+
- go tool
32
+
- AUR
33
+
- Nix
34
+
- Deb
35
+
- RPM
36
+
- Other Linux package manager
37
+
- Via editor/IDE
38
+
- asdf/mise-en-place
39
+
- Other
40
+
validations:
41
+
required: true
42
+
43
+
- type: textarea
44
+
id: problem
45
+
attributes:
46
+
label: Description of the problem
47
+
placeholder: Your problem description
48
+
validations:
49
+
required: true
50
+
51
+
- type: textarea
52
+
id: version
53
+
attributes:
54
+
label: Version of golines
55
+
value: |-
56
+
<details>
57
+
58
+
```console
59
+
$ golines --version
60
+
# Paste output here
61
+
```
62
+
63
+
</details>
64
+
validations:
65
+
required: true
66
+
67
+
- type: textarea
68
+
id: go-env
69
+
attributes:
70
+
label: Go environment
71
+
value: |-
72
+
<details>
73
+
74
+
```console
75
+
$ go version && go env
76
+
# paste output here
77
+
```
78
+
79
+
</details>
80
+
validations:
81
+
required: true
82
+
83
+
- type: textarea
84
+
id: code-example
85
+
attributes:
86
+
label: A minimal reproducible example or link to a public repository
87
+
description: if your problem is related to a private repository, a minimal reproducible example is required.
88
+
value: |-
89
+
<details>
90
+
91
+
```go
92
+
// add your code here
93
+
```
94
+
95
+
</details>
96
+
validations:
97
+
required: true
98
+
99
+
- type: checkboxes
100
+
id: validation
101
+
attributes:
102
+
label: Validation
103
+
options:
104
+
- label: Yes, I've included all the information above (version, etc.).
105
+
required: true
106
+
107
+
- type: checkboxes
108
+
id: supporter
109
+
attributes:
110
+
label: Supporter
111
+
options:
112
+
- label: I am a [sponsor/backer](https://golangci-lint.run/docs/donate/)
0 commit comments