Skip to content

Commit 48d82c0

Browse files
authored
Update issue templates (#1275)
1 parent 20f2ef2 commit 48d82c0

File tree

4 files changed

+79
-10
lines changed

4 files changed

+79
-10
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
54
---
65

76
<!--
@@ -10,10 +9,16 @@ about: Create a report to help us improve
109
To make sure it's not, run: yarn eslint src/your-file.vue
1110
-->
1211

12+
**Checklist**
13+
14+
- [ ] I checked the [FAQ](https://eslint.vuejs.org/user-guide/#faq).
15+
1316
**Tell us about your environment**
14-
* **ESLint version:**
15-
* **eslint-plugin-vue version:**
16-
* **Node version:**
17+
18+
- **ESLint version:**
19+
- **eslint-plugin-vue version:**
20+
- **Node version:**
21+
- **Operating System:**
1722

1823
**Please show your full configuration:**
1924
<!-- Paste content of your .eslintrc file -->
@@ -31,4 +36,10 @@ about: Create a report to help us improve
3136

3237

3338
**What actually happened?**
34-
<!-- Please include the actual, raw output from ESLint. -->
39+
<!--
40+
Please include the actual, raw output from ESLint.
41+
If you are only looking at the results of your editor extension, also check the CLI results.
42+
-->
43+
44+
**Repository to reproduce this issue**
45+

.github/ISSUE_TEMPLATE/change.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: "Non-rule change request"
3+
about: Request a change that is not a bug fix, rule change, or new rule
4+
---
5+
6+
<!--
7+
Before proposing changes, please make sure it hasn't been posted already.
8+
You can see all open propositions here:
9+
https://github.com/vuejs/eslint-plugin-vue/issues?q=is%3Aopen+is%3Aissue+label%3A%22new+rule+proposition%22
10+
-->
11+
12+
**Tell us about your environment**
13+
14+
- **ESLint version:**
15+
- **eslint-plugin-vue version:**
16+
- **Node version:**
17+
18+
**The problem you want to solve.**
19+
20+
21+
**Your take on the correct solution to problem.**
22+
23+
24+
**Additional context**
25+
<!-- Add any other context or screenshots about the feature request here. -->
26+

.github/ISSUE_TEMPLATE/rule-change.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: "Rule change request"
3+
about: Request a change to an existing rule
4+
---
5+
6+
<!--
7+
Before proposing rule changes, please make sure it hasn't been posted already.
8+
You can see all open propositions here:
9+
https://github.com/vuejs/eslint-plugin-vue/issues?q=is%3Aopen+is%3Aissue+label%3A%22new+rule+proposition%22
10+
-->
11+
12+
**What rule do you want to change?**
13+
14+
**Does this change cause the rule to produce more or fewer warnings?**
15+
16+
**How will the change be implemented? (New option, new default behavior, etc.)?**
17+
18+
**Please provide some example code that this change will affect:**
19+
20+
<!-- Put your code examples here -->
21+
```vue
22+
23+
```
24+
25+
**What does the rule currently do for this code?**
26+
27+
**What will the rule do after it's changed?**
28+
29+
**Additional context**
30+
<!-- Add any other context or screenshots about the feature request here. -->
31+

.github/ISSUE_TEMPLATE/rule-proposal.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
name: Rule Proposal
33
about: Suggest an idea for a new rule
4-
54
---
65

76
<!--
@@ -15,15 +14,17 @@ about: Suggest an idea for a new rule
1514

1615
**What category should the rule belong to?**
1716
<!-- (place an "X" next to just one item) -->
18-
- [ ] Enforces code style
19-
- [ ] Warns about a potential error
20-
- [ ] Suggests an alternate way of doing something
21-
- [ ] Other (please specify:)
17+
[ ] Enforces code style (layout)
18+
[ ] Warns about a potential error (problem)
19+
[ ] Suggests an alternate way of doing something (suggestion)
20+
[ ] Other (please specify:)
2221

2322
**Provide 2-3 code examples that this rule should warn about:**
23+
2424
```vue
2525
2626
```
2727

2828
**Additional context**
2929
<!-- Add any other context or screenshots about the feature request here. -->
30+

0 commit comments

Comments
 (0)