diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 8c4bf8eb1b75..90cf21dc40e7 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -6,7 +6,7 @@ #### Prerequisites checklist -- [ ] I have read the [contributing guidelines](https://github.com/eslint/eslint/blob/HEAD/CONTRIBUTING.md). +- [ ] I have read the [contributing guidelines](../CONTRIBUTING.md). #### What is the purpose of this pull request? (put an "X" next to an item) @@ -16,16 +16,16 @@ --> [ ] Documentation update -[ ] Bug fix ([template](https://raw.githubusercontent.com/eslint/eslint/HEAD/templates/bug-report.md)) -[ ] New rule ([template](https://raw.githubusercontent.com/eslint/eslint/HEAD/templates/rule-proposal.md)) -[ ] Changes an existing rule ([template](https://raw.githubusercontent.com/eslint/eslint/HEAD/templates/rule-change-proposal.md)) +[ ] Bug fix ([template](ISSUE_TEMPLATE/bug-report.yml)) +[ ] New rule ([template](ISSUE_TEMPLATE/new-rule.yml)) +[ ] Changes an existing rule ([template](ISSUE_TEMPLATE/rule-change.yml)) [ ] Add autofix to a rule [ ] Add a CLI option [ ] Add something to the core [ ] Other, please explain: -```js - -``` - - - -**What did you do? Please include the actual source code causing the issue.** - -**What did you expect to happen?** - -**What actually happened? Please include the actual, raw output from ESLint.** diff --git a/templates/rule-change-proposal.md b/templates/rule-change-proposal.md deleted file mode 100644 index a4a8e17cbd51..000000000000 --- a/templates/rule-change-proposal.md +++ /dev/null @@ -1,15 +0,0 @@ -**What rule do you want to change?** - -**Does this change cause the rule to produce more or fewer warnings?** - -**How will the change be implemented? (New option, new default behavior, etc.)?** - -**Please provide some example code that this change will affect:** - -```js - -``` - -**What does the rule currently do for this code?** - -**What will the rule do after it's changed?** diff --git a/templates/rule-proposal.md b/templates/rule-proposal.md deleted file mode 100644 index 2adf9317613b..000000000000 --- a/templates/rule-proposal.md +++ /dev/null @@ -1,16 +0,0 @@ -**Please describe what the rule should do:** - -**What category of rule is this (place an "X" next to just one item)?** - -[ ] Enforces code style -[ ] Warns about a potential error -[ ] Suggests an alternate way of doing something -[ ] Other (please specify:) - -**Provide 2-3 code examples that this rule will warn about:** - -```js - -``` - -**Why should this rule be included in ESLint (instead of a plugin)?**