Skip to content

Commit 758c66b

Browse files
authored
docs: Explain what frozen rules mean (#19382)
* docs: Explain what frozen rules mean fixes #19346 * Update README * Add note about modifying core ruels
1 parent 67dd82a commit 758c66b

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

README.md

-10
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ ESLint is a tool for identifying and reporting on patterns found in ECMAScript/J
3535
1. [Releases](#releases)
3636
1. [Security Policy](#security-policy)
3737
1. [Semantic Versioning Policy](#semantic-versioning-policy)
38-
1. [Stylistic Rule Updates](#stylistic-rule-updates)
3938
1. [License](#license)
4039
1. [Team](#team)
4140
1. [Sponsors](#sponsors)
@@ -191,15 +190,6 @@ ESLint follows [semantic versioning](https://semver.org). However, due to the na
191190

192191
According to our policy, any minor update may report more linting errors than the previous release (ex: from a bug fix). As such, we recommend using the tilde (`~`) in `package.json` e.g. `"eslint": "~3.1.0"` to guarantee the results of your builds.
193192

194-
## Stylistic Rule Updates
195-
196-
Stylistic rules are frozen according to [our policy](https://eslint.org/blog/2020/05/changes-to-rules-policies) on how we evaluate new rules and rule changes.
197-
This means:
198-
199-
* **Bug fixes**: We will still fix bugs in stylistic rules.
200-
* **New ECMAScript features**: We will also make sure stylistic rules are compatible with new ECMAScript features.
201-
* **New options**: We will **not** add any new options to stylistic rules unless an option is the only way to fix a bug or support a newly-added ECMAScript feature.
202-
203193
## License
204194

205195
MIT License

docs/src/_includes/components/rule-categories.macro.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<div class="rule-category">
3333
<span class="rule-category__icon">❄️ <span class="visually-hidden">Frozen</span></span>
3434
<p class="rule-category__description">
35-
This rule is currently frozen and is not accepting feature requests.
35+
This rule is currently <a href="../contribute/core-rules#frozen-rules">frozen</a> and is not accepting feature requests.
3636
</p>
3737
</div>
3838
{%- endif -%}

docs/src/contribute/core-rules.md

+12
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,15 @@ The rule naming conventions for ESLint are as follows:
108108
* Use dashes between words.
109109
* If your rule only disallows something, prefix it with `no-` such as `no-eval` for disallowing `eval()` and `no-debugger` for disallowing `debugger`.
110110
* If your rule is enforcing the inclusion of something, use a short name without a special prefix.
111+
112+
## Frozen Rules
113+
114+
When rules are feature complete, they are marked as frozen (indicated with ❄️ in the documentation). Rules are considered feature complete when the intended purpose of the rule has been fully implemented such that it catches 80% or more of expected violations and covers the majority of common exceptions. After that point, we expect users to use [disable comments](../use/configure/rules#using-configuration-comments-1) when they find an edge case that isn't covered.
115+
116+
When a rule is frozen, it means:
117+
118+
* **Bug fixes**: We will still fix confirmed bugs.
119+
* **New ECMAScript features**: We will ensure compatibility with new ECMAScript features, meaning the rule will not break on new syntax.
120+
* **New options**: We will **not** add any new options unless an option is the only way to fix a bug or support a newly-added ECMAScript feature.
121+
122+
If you find that a frozen rule would work better for you with a change, we recommend copying the rule source code and modifying it to fit your needs.

0 commit comments

Comments
 (0)