Skip to content

Commit b04b84b

Browse files
authored
docs: revert accidental changes in TS config files docs (#19336)
1 parent 1c87b41 commit b04b84b

File tree

2 files changed

+2
-15
lines changed

2 files changed

+2
-15
lines changed

docs/src/use/command-line-interface.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ For example:
325325

326326
{{ npx_tabs ({
327327
package: "eslint",
328-
args: ["--config", "~/personal-eslintrc.js", "\\", "--resolve-plugins-relative-to", "/usr/local/lib/"]
328+
args: ["--config", "~/personal-eslintrc.js", "--resolve-plugins-relative-to", "/usr/local/lib/"]
329329
}) }}
330330

331331
### Specify Rules and Plugins
@@ -384,7 +384,7 @@ To ignore rules in `.eslintrc` configuration files and only run rules specified
384384

385385
{{ npx_tabs ({
386386
package: "eslint",
387-
args: ["--rule", "\'quotes: [error, double]\'", "-no-eslintrc"],
387+
args: ["--rule", "\'quotes: [error, double]\'", "--no-eslintrc"],
388388
comment: "Only apply rule from the command line"
389389
}) }}
390390

docs/src/use/configure/configuration-files.md

-13
Original file line numberDiff line numberDiff line change
@@ -521,19 +521,6 @@ For more information about using feature flags, see [Feature Flags](../../flags/
521521

522522
## TypeScript Configuration Files
523523

524-
::: warning
525-
This feature is currently experimental and may change in future versions.
526-
:::
527-
528-
You need to enable this feature through the `unstable_ts_config` feature flag:
529-
530-
{{ npx_tabs({
531-
package: "eslint",
532-
args: ["--flag", "unstable_ts_config"]
533-
}) }}
534-
535-
For more information about using feature flags, see [Feature Flags](../../flags/).
536-
537524
For Deno and Bun, TypeScript configuration files are natively supported; for Node.js, you must install the optional dev dependency [`jiti`](https://github.com/unjs/jiti) in version 2.0.0 or later in your project (this dependency is not automatically installed by ESLint):
538525

539526
{{ npm_tabs({

0 commit comments

Comments
 (0)