summaryrefslogtreecommitdiff
path: root/.github/ISSUE_TEMPLATE/1_Bug_report.md
diff options
context:
space:
mode:
Diffstat (limited to '.github/ISSUE_TEMPLATE/1_Bug_report.md')
-rw-r--r--.github/ISSUE_TEMPLATE/1_Bug_report.md45
1 files changed, 40 insertions, 5 deletions
diff --git a/.github/ISSUE_TEMPLATE/1_Bug_report.md b/.github/ISSUE_TEMPLATE/1_Bug_report.md
index feaaeeb9a..b4c2e1ddc 100644
--- a/.github/ISSUE_TEMPLATE/1_Bug_report.md
+++ b/.github/ISSUE_TEMPLATE/1_Bug_report.md
@@ -10,19 +10,54 @@ about: Report a bug in pylint
Before you submit this, make sure that the issue doesn't already exist
or if it is not closed.
- Is your issue fixed on the preview release?: pip install pylint astroid --pre -U
-
+ Is your issue fixed on the preview release?:
+ pip install pylint astroid --pre -U
-->
### Steps to reproduce
-1.
-2.
-3.
+
+<!--
+Given a file `a.py`:
+```python
+# (Disable message unrelated to the bug)
+# pylint: disable=missing-docstring,...
+
+```
+
+Given multiple files:
+```
+__init__.py
+a.py
+module\
+ __init__.py
+ b.py
+ c.py
+```
+-->
### Current behavior
+<!--
+Result of `pylint a.py`:
+```
+```
+-->
### Expected behavior
### pylint --version output
+
+Result of `pylint --version` output:
+```
+
+```
+
+<!--
+Additional dependencies:
+```
+pandas==0.23.2
+marshmallow==3.10.0
+...
+```
+-->