Skip to content

Commit 8cbcf87

Browse files
Guide the user more in the bug report
Would probably permit to have the version more often and to have something to do a functional test with more often too.
1 parent 8f39e8f commit 8cbcf87

File tree

2 files changed

+40
-6
lines changed

2 files changed

+40
-6
lines changed

.github/ISSUE_TEMPLATE/1_Bug_report.md

Lines changed: 40 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,54 @@ about: Report a bug in pylint
1010
Before you submit this, make sure that the issue doesn't already exist
1111
or if it is not closed.
1212
13-
Is your issue fixed on the preview release?: pip install pylint astroid --pre -U
14-
13+
Is your issue fixed on the preview release?:
14+
pip install pylint astroid --pre -U
1515
-->
1616

1717
### Steps to reproduce
18-
1.
19-
2.
20-
3.
18+
19+
<!--
20+
Given a file `a.py`:
21+
```python
22+
# (Disable message unrelated to the bug)
23+
# pylint: disable=missing-docstring,...
24+
25+
```
26+
27+
Given multiple files:
28+
```
29+
__init__.py
30+
a.py
31+
module\
32+
__init__.py
33+
b.py
34+
c.py
35+
```
36+
-->
2137

2238
### Current behavior
39+
<!--
40+
Result of `pylint a.py`:
41+
```
2342
43+
```
44+
-->
2445

2546
### Expected behavior
2647

2748

2849
### pylint --version output
50+
51+
Result of `pylint --version` output:
52+
```
53+
54+
```
55+
56+
<!--
57+
Additional dependencies:
58+
```
59+
pandas==0.23.2
60+
marshmallow==3.10.0
61+
...
62+
```
63+
-->

.github/ISSUE_TEMPLATE/2_Feature_request.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,5 @@ A clear and concise description of what the problem is.
1717
### Describe the solution you'd like
1818
A clear and concise description of what you want to happen.
1919

20-
2120
### Additional context
2221
Add any other context about the feature request here.

0 commit comments

Comments
 (0)