Skip to content

Commit

Permalink
docs: Link global ignores section in config object property list (#18430
Browse files Browse the repository at this point in the history
)

* Link global ignores section in config object property list

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

---------

Co-authored-by: Nicholas C. Zakas <[email protected]>
  • Loading branch information
MaoShizhong and nzakas committed May 8, 2024
1 parent 37eba48 commit e763512
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/use/configure/configuration-files.md
Expand Up @@ -58,7 +58,7 @@ Each configuration object contains all of the information ESLint needs to execut

* `name` - A name for the configuration object. This is used in error messages and config inspector to help identify which configuration object is being used. ([Naming Convention](#configuration-naming-conventions))
* `files` - An array of glob patterns indicating the files that the configuration object should apply to. If not specified, the configuration object applies to all files matched by any other configuration object.
* `ignores` - An array of glob patterns indicating the files that the configuration object should not apply to. If not specified, the configuration object applies to all files matched by `files`.
* `ignores` - An array of glob patterns indicating the files that the configuration object should not apply to. If not specified, the configuration object applies to all files matched by `files`. If `ignores` is used without any other keys in the configuration object, then the patterns act as [global ignores](#globally-ignoring-files-with-ignores).
* `languageOptions` - An object containing settings related to how JavaScript is configured for linting.
* `ecmaVersion` - The version of ECMAScript to support. May be any year (i.e., `2022`) or version (i.e., `5`). Set to `"latest"` for the most recent supported version. (default: `"latest"`)
* `sourceType` - The type of JavaScript source code. Possible values are `"script"` for traditional script files, `"module"` for ECMAScript modules (ESM), and `"commonjs"` for CommonJS files. (default: `"module"` for `.js` and `.mjs` files; `"commonjs"` for `.cjs` files)
Expand Down

0 comments on commit e763512

Please sign in to comment.