Skip to content

Commit

Permalink
Make the configuration optional in the bug report template
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Jul 25, 2021
1 parent 0641da3 commit 4b18c34
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/ISSUE_TEMPLATE/BUG-REPORT.yml
Expand Up @@ -7,8 +7,7 @@ body:
value: |
**Thank you for wanting to report a bug in pylint!**
Please make sure that this issue wasn't already requested, or already implemented in the main branch.
⚠ Please make sure that this issue wasn't already requested, or already implemented in the main branch.
- type: textarea
id: what-happened
attributes:
Expand All @@ -24,16 +23,21 @@ body:
# pylint: disable=missing-docstring,
<a> = b + 1
```
Using the following configuration pylintrc:
validations:
required: true
- type: textarea
id: configuration
attributes:
label: (Configuration)
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)
value: |
Using the following configuration:
```ini
# Please remove configuration unrelated to the bug
[MESSAGES CONTROL]
enable=use-symbolic-message-instead,
```
validations:
required: true
required: false
- type: textarea
id: current-behavior
attributes:
Expand Down Expand Up @@ -68,14 +72,14 @@ body:
render: shell
- type: textarea
attributes:
label: OS / Environment
label: (OS / Environment)
description: >-
Provide all relevant information below, e.g. OS version, terminal etc.
placeholder: Fedora 33, Cygwin, etc.
- type: textarea
id: additional-deps
attributes:
label: Additional dependencies ?
label: (Additional dependencies)
description: If applicable ie, if we can't reproduce without it
placeholder: |
Additional dependencies:
Expand Down

0 comments on commit 4b18c34

Please sign in to comment.