Skip to content
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

Improve Issue forms #4749

Merged
merged 6 commits into from Jul 27, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 23 additions & 9 deletions .github/ISSUE_TEMPLATE/BUG-REPORT.yml
Expand Up @@ -20,11 +20,9 @@ body:
What is the bug about? Please provide the code that is causing the issue, and
configurations used if required
placeholder: |
```python
# Please disable message unrelated to the bug
# pylint: disable=missing-docstring,
<a> = b + 1
```
render: python
validations:
required: true
Expand All @@ -35,17 +33,37 @@ body:
description:
Please provide the part of the configuration that is causing the bug if required
(Leave this part blank if the configuration is not relevant)
placeholder: |
# Leave this black if the configuration is not relevant!
Pierre-Sassoulas marked this conversation as resolved.
Show resolved Hide resolved

[MASTER]
load-plugins=
pylint.extensions.code_style

[MESSAGE CONTROL]
enable=
useless-supression

# ...
render: ini
- type: textarea
id: cmd-used
attributes:
label: Command used
description: What was the command used to invoke pylint?
placeholder: |
pylint a.py
render: shell
validations:
required: true
- type: textarea
id: current-behavior
attributes:
label: Pylint output
description: What is the current pylint output?
placeholder: |
```
************* Module a
a.py:3:1: E0001: invalid syntax (<unknown>, line 1) (syntax-error)
```
render: shell
validations:
required: true
Expand All @@ -61,15 +79,13 @@ body:
id: python-interpreter
attributes:
label: Pylint version
description: |
description: >-
Please copy and paste the result of `pylint --version` or specify the range of
version affected.
placeholder: |
```
pylint 2.9.6
astroid 2.6.5
Python 3.8.10 (default, Jun 2 2021, 10:49:15) [GCC 9.4.0]
```
render: shell
validations:
required: true
Expand All @@ -85,7 +101,5 @@ body:
label: Additional dependencies
description: If applicable ie, if we can't reproduce without it
placeholder: |
```
pandas==0.23.2
marshmallow==3.10.0
```
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
@@ -1,4 +1,4 @@
blank_issues_enabled: false
blank_issues_enabled: true
contact_links:
- name: 💬 Discord
url: https://discord.gg/Egy6P8AMB5
Expand Down