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

[Improvement] Issue Template Proposal #3483

Merged
merged 1 commit into from Dec 2, 2022
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
81 changes: 81 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,81 @@
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: ["bug", "triage"]
assignees: []
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues and my issue is unique
required: true
- label: My issue appears in the command-line and not only in the text editor
required: true
- type: textarea
id: Code
attributes:
label: Description Overview
description: A clear and concise description of bug w/ examples
placeholder: |
Brief description here

Show example of your code (as text format), add images/videos/gifs to help explain example
and/or Link of repo to where issue is occurring

What is happening? / What is the error?

What command(s) did you run to reproduce issue?
value: |
<!--Brief description-->


<!--Show example of your code (as text format), add images/videos/gifs to help explain example-->
<!--and/or Link of repo to where issue is occurring-->


<!--What is happening? / What is the error?-->


<!--What command(s) did you run to reproduce issue?-->

validations:
required: true
- type: textarea
id: expected_behavior
attributes:
label: Expected Behavior
description: A clear and concise description of what you expected to happen.
placeholder: |
Brief description here

Show example of code (as text format), add images/videos/gifs to help explain expected behavior
value: |
<!--Brief description-->


<!--Show example of code (as text format), add images/videos/gifs to help explain expected behavior-->
validations:
required: true
- type: input
id: eslint-plugin-react-version
attributes:
label: `eslint-plugin-react` version
placeholder: v7.31.11
validations:
required: true
- type: input
id: eslint-version
attributes:
label: `eslint` version
placeholder: v8.28.0
validations:
required: true
- type: input
id: node-version
attributes:
label: `node` version
placeholder: v8.19.2
validations:
required: true
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -22,11 +22,13 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
### Changed
* [Docs] [`jsx-no-leaked-render`]: Remove mentions of empty strings for React 18 ([#3468][] @karlhorky)
* [Docs] update `eslint-doc-generator` to v1.0.0 ([#3499][] @bmish)
* [meta] add issue template ([#3483][] @ROSSROSALES)

[#3499]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3499
[#3494]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3494
[#3493]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3493
[#3488]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3488
[#3483]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3483
[#3474]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3474
[#3471]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3471
[#3468]: https://github.com/jsx-eslint/eslint-plugin-react/pull/3468
Expand Down