]> git.proxmox.com Git - pve-eslint.git/blob - eslint/docs/src/developer-guide/contributing/rule-changes.md
b96d668a5e2ba6d7544652c1cc734b603b0cd4bc
[pve-eslint.git] / eslint / docs / src / developer-guide / contributing / rule-changes.md
1 ---
2 title: Rule Changes
3 layout: doc
4
5 ---
6
7 Occasionally, a core ESLint rule needs to be changed. This is not necessarily a bug, but rather, an enhancement that makes a rule more configurable. In those situations, we will consider making changes to rules.
8
9 ## Proposing a Rule Change
10
11 To propose a change to an existing rule, [create a pull request](/docs/developer-guide/contributing/pull-requests) or [new issue](https://github.com/eslint/eslint/issues/new/choose) and fill out the template.
12
13 We need all of this information in order to determine whether or not the change is a good candidate for inclusion.
14
15 ## Accepting a Rule Change
16
17 In order for a rule change to be accepted into ESLint, it must:
18
19 1. Adhere to the [Core Rule Guidelines](new-rules#core-rule-guidelines)
20 1. Have an ESLint team member champion the change
21 1. Be important enough that rule is deemed incomplete without this change
22
23 ## Implementation is Your Responsibility
24
25 The ESLint team doesn't implement rule changes that are suggested by users because we have a limited number of people and need to focus on the overall roadmap. Once a rule change is accepted, you are responsible for implementing and documenting it. You may, alternately, recruit another person to help you. The ESLint team member who championed the rule is your resource to help guide you through the rest of this process.