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

Chore: Cleanup issue templates #15039

Merged
merged 1 commit into from Sep 14, 2021
Merged
Show file tree
Hide file tree
Changes from all 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
17 changes: 11 additions & 6 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Expand Up @@ -7,7 +7,7 @@ labels:
body:
- type: markdown
attributes:
value: ESLint adheres to the [Open JS Foundation Code of Conduct](https://eslint.org/conduct). By opening an issue, you agree to abide by the code of conduct.
value: By opening an issue, you agree to abide by the [Open JS Foundation Code of Conduct](https://eslint.org/conduct).
- type: textarea
attributes:
label: Environment
Expand Down Expand Up @@ -43,11 +43,14 @@ body:
value: |
<details>
<summary>Configuration</summary>
<!-- Paste your configuration below: -->
```js

```
<!-- Paste your configuration here -->
```
</details>

```js
<!-- Paste your code here -->
```
render: markdown
validations:
required: true
Expand All @@ -56,15 +59,13 @@ body:
label: What did you expect to happen?
description: |
You can use Markdown in this field.
render: markdown
validations:
required: true
- type: textarea
attributes:
label: What actually happened?
description: |
Please copy-paste the actual ESLint output. You can use Markdown in this field.
render: markdown
validations:
required: true
- type: checkboxes
Expand All @@ -73,3 +74,7 @@ body:
options:
- label: I am willing to submit a pull request for this issue.
required: false
- type: textarea
attributes:
label: Additional comments
description: Is there anything else that's important for the team to know?
6 changes: 5 additions & 1 deletion .github/ISSUE_TEMPLATE/change.yml
Expand Up @@ -8,7 +8,7 @@ labels:
body:
- type: markdown
attributes:
value: ESLint adheres to the [Open JS Foundation Code of Conduct](https://eslint.org/conduct). By opening an issue, you agree to abide by the code of conduct.
value: By opening an issue, you agree to abide by the [Open JS Foundation Code of Conduct](https://eslint.org/conduct).
- type: input
attributes:
label: ESLint version
Expand Down Expand Up @@ -42,3 +42,7 @@ body:
options:
- label: I am willing to submit a pull request for this change.
required: false
- type: textarea
attributes:
label: Additional comments
description: Is there anything else that's important for the team to know?
6 changes: 5 additions & 1 deletion .github/ISSUE_TEMPLATE/new-rule.yml
Expand Up @@ -7,7 +7,7 @@ labels:
body:
- type: markdown
attributes:
value: ESLint adheres to the [Open JS Foundation Code of Conduct](https://eslint.org/conduct). By opening an issue, you agree to abide by the code of conduct.
value: By opening an issue, you agree to abide by the [Open JS Foundation Code of Conduct](https://eslint.org/conduct).
- type: input
attributes:
label: Rule details
Expand Down Expand Up @@ -48,3 +48,7 @@ body:
options:
- label: I am willing to submit a pull request to implement this rule.
required: false
- type: textarea
attributes:
label: Additional comments
description: Is there anything else that's important for the team to know?
15 changes: 10 additions & 5 deletions .github/ISSUE_TEMPLATE/rule-change.yml
Expand Up @@ -7,19 +7,20 @@ labels:
body:
- type: markdown
attributes:
value: ESLint adheres to the [Open JS Foundation Code of Conduct](https://eslint.org/conduct). By opening an issue, you agree to abide by the code of conduct.
value: By opening an issue, you agree to abide by the [Open JS Foundation Code of Conduct](https://eslint.org/conduct).
- type: input
attributes:
label: What rule do you want to change?
validations:
required: true
- type: dropdown
attributes:
label: Does this change cause the rule to produce more or fewer warnings?
label: What change to do you want to make?
options:
- More warnings
- Fewer warnings
- No change to warnings
- Generate more warnings
- Generate fewer warnings
- Implement autofix
- Implement suggestions
validations:
required: true
- type: dropdown
Expand Down Expand Up @@ -54,3 +55,7 @@ body:
options:
- label: I am willing to submit a pull request to implement this change.
required: false
- type: textarea
attributes:
label: Additional comments
description: Is there anything else that's important for the team to know?