Skip to content

Commit f87e199

Browse files
authored
Chore: Cleanup issue templates (#15039)
1 parent 660f075 commit f87e199

File tree

4 files changed

+31
-13
lines changed

4 files changed

+31
-13
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ labels:
77
body:
88
- type: markdown
99
attributes:
10-
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.
10+
value: By opening an issue, you agree to abide by the [Open JS Foundation Code of Conduct](https://eslint.org/conduct).
1111
- type: textarea
1212
attributes:
1313
label: Environment
@@ -43,11 +43,14 @@ body:
4343
value: |
4444
<details>
4545
<summary>Configuration</summary>
46-
<!-- Paste your configuration below: -->
47-
```js
48-
46+
```
47+
<!-- Paste your configuration here -->
4948
```
5049
</details>
50+
51+
```js
52+
<!-- Paste your code here -->
53+
```
5154
render: markdown
5255
validations:
5356
required: true
@@ -56,15 +59,13 @@ body:
5659
label: What did you expect to happen?
5760
description: |
5861
You can use Markdown in this field.
59-
render: markdown
6062
validations:
6163
required: true
6264
- type: textarea
6365
attributes:
6466
label: What actually happened?
6567
description: |
6668
Please copy-paste the actual ESLint output. You can use Markdown in this field.
67-
render: markdown
6869
validations:
6970
required: true
7071
- type: checkboxes
@@ -73,3 +74,7 @@ body:
7374
options:
7475
- label: I am willing to submit a pull request for this issue.
7576
required: false
77+
- type: textarea
78+
attributes:
79+
label: Additional comments
80+
description: Is there anything else that's important for the team to know?

.github/ISSUE_TEMPLATE/change.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ labels:
88
body:
99
- type: markdown
1010
attributes:
11-
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.
11+
value: By opening an issue, you agree to abide by the [Open JS Foundation Code of Conduct](https://eslint.org/conduct).
1212
- type: input
1313
attributes:
1414
label: ESLint version
@@ -42,3 +42,7 @@ body:
4242
options:
4343
- label: I am willing to submit a pull request for this change.
4444
required: false
45+
- type: textarea
46+
attributes:
47+
label: Additional comments
48+
description: Is there anything else that's important for the team to know?

.github/ISSUE_TEMPLATE/new-rule.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ labels:
77
body:
88
- type: markdown
99
attributes:
10-
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.
10+
value: By opening an issue, you agree to abide by the [Open JS Foundation Code of Conduct](https://eslint.org/conduct).
1111
- type: input
1212
attributes:
1313
label: Rule details
@@ -48,3 +48,7 @@ body:
4848
options:
4949
- label: I am willing to submit a pull request to implement this rule.
5050
required: false
51+
- type: textarea
52+
attributes:
53+
label: Additional comments
54+
description: Is there anything else that's important for the team to know?

.github/ISSUE_TEMPLATE/rule-change.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,20 @@ labels:
77
body:
88
- type: markdown
99
attributes:
10-
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.
10+
value: By opening an issue, you agree to abide by the [Open JS Foundation Code of Conduct](https://eslint.org/conduct).
1111
- type: input
1212
attributes:
1313
label: What rule do you want to change?
1414
validations:
1515
required: true
1616
- type: dropdown
1717
attributes:
18-
label: Does this change cause the rule to produce more or fewer warnings?
18+
label: What change to do you want to make?
1919
options:
20-
- More warnings
21-
- Fewer warnings
22-
- No change to warnings
20+
- Generate more warnings
21+
- Generate fewer warnings
22+
- Implement autofix
23+
- Implement suggestions
2324
validations:
2425
required: true
2526
- type: dropdown
@@ -54,3 +55,7 @@ body:
5455
options:
5556
- label: I am willing to submit a pull request to implement this change.
5657
required: false
58+
- type: textarea
59+
attributes:
60+
label: Additional comments
61+
description: Is there anything else that's important for the team to know?

0 commit comments

Comments
 (0)