-
Notifications
You must be signed in to change notification settings - Fork 150
chore: create bug report form #428
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
Merged
Merged
Changes from 6 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
7431d97
chore: create bug report form
HonkingGoose d4e7364
clarify description
HonkingGoose 20e3cd2
add textarea for bug description
HonkingGoose 6a7846a
indent properly
HonkingGoose bc22940
further work
HonkingGoose 2523fad
further work
HonkingGoose c4d6c89
Add tip about checking eslintrc file for rules
HonkingGoose 3066225
Add tip about checking eslintrc file for ESLint config
HonkingGoose bd0bf84
Merge branch 'main' into patch-2
HonkingGoose 60e5f0a
put placeholder sentence between single quotes
HonkingGoose f7abf1b
Put placeholder sentence between single quotes
HonkingGoose 3dd76b5
Merge branch 'main' into patch-2
MichaelDeBoey 9c1a0f3
Fix typo in label name
HonkingGoose 54497b9
Make anything else field optional
HonkingGoose File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
name: Bug Report | ||
description: File a bug report | ||
labels: [bug] | ||
body: | ||
- type: input | ||
id: plugin_version | ||
attributes: | ||
label: Plugin version | ||
description: What version of `eslint-plugin-testing-library` are you using? | ||
placeholder: v4.10.1 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: eslint_version | ||
attributes: | ||
label: ESLint version | ||
description: What version of ESLint are you using? | ||
placeholder: v7.31.0 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: node_js_version | ||
attributes: | ||
label: Node.js version | ||
description: What version of Node.js are you using? | ||
placeholder: 14.17.3 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: npm_yarn_version | ||
attributes: | ||
label: npm/yarn version | ||
description: Tell us whether you use npm or yarn as your package manager, and what version. | ||
placeholder: npm 6.14.13 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: operating_system | ||
attributes: | ||
label: Operating system | ||
description: Tell us what operating system you use, and what version. | ||
placeholder: macOS Big Sur, version 11.4 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: bug_description | ||
attributes: | ||
label: Bug description | ||
description: Describe the bug at a high level. | ||
placeholder: I was doing ..., but I expected ... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: steps_to_reproduce | ||
attributes: | ||
label: Steps to reproduce | ||
description: Give us a ordered list of the steps to reproduce the problem. | ||
placeholder: | | ||
1. Go to ... | ||
2. Do .... | ||
3. See bug | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: error_output_screenshots | ||
attributes: | ||
label: Error output/screenshots | ||
description: Copy/paste any error messages or helpful screenshots into this field. | ||
placeholder: 'Tip: you can copy/paste error messages in here. You can click and drag screenshots into this field.' | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: eslint_config | ||
attributes: | ||
label: ESLint configuration | ||
description: Copy/paste your ESLint configuration into this field. | ||
placeholder: You can find your ESLint configuration in these files TODO ADD LIST OF VALID FILENAMES | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: rule_affected | ||
attributes: | ||
label: Rules(s) affected | ||
HonkingGoose marked this conversation as resolved.
Show resolved
Hide resolved
|
||
description: Tell us what `eslint-pluging-testing-library` rule(s) are affected by this bug. | ||
placeholder: TODO ADD EXAMPLE OF A RULE | ||
HonkingGoose marked this conversation as resolved.
Show resolved
Hide resolved
|
||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: anything_else | ||
attributes: | ||
label: Anything else? | ||
description: If there's anything else we need to know, tell us about it here. | ||
placeholder: By the way, you also need to know about... | ||
validations: | ||
required: true | ||
HonkingGoose marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
- type: dropdown | ||
id: want_to_submit_pr_to_fix_bug | ||
attributes: | ||
label: Do you want to submit a pull request to fix this bug? | ||
options: | ||
- 'Yes' | ||
- 'Yes, but need help' | ||
- 'No' | ||
validations: | ||
required: true |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.