Skip to content

Commit

Permalink
docs: Clarify dangers of eslint:all (eslint#19318)
Browse files Browse the repository at this point in the history
  • Loading branch information
nzakas authored Jan 6, 2025
1 parent c038257 commit 26c3003
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/use/configure/configuration-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ export default [
ESLint has two predefined configurations for JavaScript:

* `js.configs.recommended` - enables the rules that ESLint recommends everyone use to avoid potential errors.
* `js.configs.all` - enables all of the rules shipped with ESLint.
* `js.configs.all` - enables all of the rules shipped with ESLint. This configuration is **not recommended** for production use because it changes with every minor and major version of ESLint. Use at your own risk.

To include these predefined configurations, install the `@eslint/js` package and then make any modifications to other properties in subsequent configuration objects:

Expand Down

0 comments on commit 26c3003

Please sign in to comment.