You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: change behavior of inactive flags
Fixes#19337
* generate flag inactivity reason message
* add comment
Co-authored-by: Nicholas C. Zakas <[email protected]>
---------
Co-authored-by: Nicholas C. Zakas <[email protected]>
Copy file name to clipboardexpand all lines: docs/src/pages/flags.md
+13-4
Original file line number
Diff line number
Diff line change
@@ -20,9 +20,17 @@ ESLint ships experimental and future breaking changes behind feature flags to le
20
20
The prefix of a flag indicates its status:
21
21
22
22
*`unstable_` indicates that the feature is experimental and the implementation may change before the feature is stabilized. This is a "use at your own risk" feature.
23
-
*`v##_` indicates that the feature is stabilized and will be available in the next major release. For example, `v10_some_feature` indicates that this is a breaking change that will be formally released in ESLint v10.0.0. These flags are removed each major release.
23
+
*`v##_` indicates that the feature is stabilized and will be available in the next major release. For example, `v10_some_feature` indicates that this is a breaking change that will be formally released in ESLint v10.0.0. These flags are removed each major release, and further use of them throws an error.
24
24
25
-
A feature may move from unstable to stable without a major release if it is a non-breaking change.
25
+
A feature may move from unstable to being enabled by default without a major release if it is a non-breaking change.
26
+
27
+
The following policies apply to `unstable_` flags.
28
+
29
+
* When the feature is stabilized
30
+
* If enabling the feature by default would be a breaking change, a new `v##_` flag is added as active, and the `unstable_` flag becomes inactive. Further use of the `unstable_` flag automatically enables the `v##_` flag but emits a warning.
31
+
* Otherwise, the feature is enabled by default, and the `unstable_` flag becomes inactive. Further use of the `unstable_` flag emits a warning.
32
+
* If the feature is abandoned, the `unstable_` flag becomes inactive. Further use of it throws an error.
33
+
* All inactive `unstable_` flags are removed each major release, and further use of them throws an error.
26
34
27
35
## Active Flags
28
36
@@ -51,11 +59,12 @@ The following flags were once used but are no longer active.
0 commit comments