Skip to content

Commit e1e4e1d

Browse files
armano2michalsnik
authored andcommitted
Chore: Add new issue templates (#635)
* Chore: Add new issue templates https://blog.github.com/2018-05-02-issue-template-improvements/ * Update bug_report.md * Update rule-proposal.md
1 parent 6032f21 commit e1e4e1d

File tree

3 files changed

+63
-39
lines changed

3 files changed

+63
-39
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
5+
---
6+
7+
<!--
8+
Before posting the issue, please confirm that the problem you're getting
9+
is not related with your code editor configuration.
10+
To make sure it's not, run: yarn eslint src/your-file.vue
11+
-->
12+
13+
**Tell us about your environment**
14+
* **ESLint version:**
15+
* **eslint-plugin-vue version:**
16+
* **Node version:**
17+
18+
**Please show your full configuration:**
19+
<!-- Paste content of your .eslintrc file -->
20+
```json
21+
22+
```
23+
24+
**What did you do?**
25+
<!-- Please include the actual source code causing the issue. -->
26+
```vue
27+
28+
```
29+
30+
**What did you expect to happen?**
31+
32+
33+
**What actually happened?**
34+
<!-- Please include the actual, raw output from ESLint. -->
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: Rule Proposal
3+
about: Suggest an idea for a new rule
4+
5+
---
6+
7+
<!--
8+
Before proposing new rule, please make sure it hasn't been posted already.
9+
You can see all open propositions here:
10+
https://github.com/vuejs/eslint-plugin-vue/issues?q=is%3Aopen+is%3Aissue+label%3A%22new+rule+proposition%22
11+
-->
12+
13+
**Please describe what the rule should do:**
14+
<!-- A clear and concise description of what the rule should do. -->
15+
16+
**What category should the rule belong to?**
17+
<!-- (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:)
22+
23+
**Provide 2-3 code examples that this rule should warn about:**
24+
```vue
25+
26+
```
27+
28+
**Additional context**
29+
<!-- Add any other context or screenshots about the feature request here. -->

0 commit comments

Comments
 (0)