Skip to content

Commit 83cc9a3

Browse files
authored
Add issue templates (#105)
1 parent ecc03c8 commit 83cc9a3

File tree

4 files changed

+127
-0
lines changed

4 files changed

+127
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
---
5+
6+
<!--
7+
Before posting the issue, please confirm that the problem you're getting
8+
is not related with your code editor configuration.
9+
To make sure it's not, run: yarn eslint src/your-file.vue
10+
-->
11+
12+
**Tell us about your environment**
13+
14+
- **ESLint version:**
15+
- **eslint-plugin-vue version:**
16+
- **eslint-plugin-vue-i18n version:**
17+
- **Node version:**
18+
19+
**Please show your full configuration:**
20+
<!-- Paste content of your .eslintrc file -->
21+
```json5
22+
23+
```
24+
25+
**What did you do?**
26+
<!-- Please include the actual source code causing the issue. -->
27+
```vue
28+
29+
```
30+
31+
**What did you expect to happen?**
32+
33+
34+
**What actually happened?**
35+
<!--
36+
Please include the actual, raw output from ESLint.
37+
If you are only looking at the results of your editor extension, also check the CLI results.
38+
-->
39+

.github/ISSUE_TEMPLATE/change.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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/intlify/eslint-plugin-vue-i18n/issues?q=is%3Aissue+is%3Aopen+label%3A%22Type%3A+Feature%22
10+
-->
11+
12+
**Tell us about your environment**
13+
14+
- **ESLint version:**
15+
- **eslint-plugin-vue version:**
16+
- **eslint-plugin-vue-i18n version:**
17+
- **Node version:**
18+
19+
**The problem you want to solve.**
20+
21+
22+
**Your take on the correct solution to problem.**
23+
24+
25+
**Additional context**
26+
<!-- Add any other context or screenshots about the feature request here. -->
27+

.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/intlify/eslint-plugin-vue-i18n/issues?q=is%3Aissue+is%3Aopen+label%3A%22Type%3A+Feature%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+
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
name: Rule Proposal
3+
about: Suggest an idea for a new rule
4+
---
5+
6+
<!--
7+
Before proposing new rule, please make sure it hasn't been posted already.
8+
You can see all open propositions here:
9+
https://github.com/intlify/eslint-plugin-vue-i18n/issues?q=is%3Aissue+is%3Aopen+label%3A%22Type%3A+Feature%22
10+
-->
11+
12+
**Please describe what the rule should do:**
13+
<!-- A clear and concise description of what the rule should do. -->
14+
15+
**What category should the rule belong to?**
16+
<!-- (place an "X" next to just one item) -->
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:)
21+
22+
**Provide 2-3 code examples that this rule should warn about:**
23+
24+
```vue
25+
26+
```
27+
28+
**Additional context**
29+
<!-- Add any other context or screenshots about the feature request here. -->
30+

0 commit comments

Comments
 (0)