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
Copy file name to clipboardexpand all lines: docs/src/use/command-line-interface.md
+9-10
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,7 @@ Basic configuration:
93
93
-c, --config path::String Use this configuration instead of eslint.config.js, eslint.config.mjs, or
94
94
eslint.config.cjs
95
95
--inspect-config Open the config inspector with the current configuration
96
+
--ext [String] Specify additional file extensions to lint
96
97
--global [String] Define global variables
97
98
--parser String Specify the parser to be used
98
99
--parser-options Object Specify parser options
@@ -219,34 +220,32 @@ Details about the global variables defined by each environment are available in
219
220
220
221
#### `--ext`
221
222
222
-
**eslintrc Mode Only.** If you are using flat config (`eslint.config.js`), please see [migration guide](./configure/migration-guide#--ext).
223
-
224
-
This option allows you to specify which file extensions ESLint uses when searching for target files in the directories you specify.
223
+
This option allows you to specify additional file extensions to lint.
225
224
226
225
***Argument Type**: String. File extension.
227
226
***Multiple Arguments**: Yes
228
-
***Default Value**: `.js` and the files that match the `overrides` entries of your configuration.
227
+
***Default Value**: By default, ESLint lints files with extensions `.js`, `.mjs`, `.cjs`, and additional extensions [specified in the configuration file](configure/configuration-files#specifying-files-with-arbitrary-extensions).
229
228
230
-
`--ext`is only used when the patterns to lint are directories. If you use glob patterns or file names, then `--ext` is ignored. For example, `npx eslint "lib/*" --ext .js` matches all files within the `lib/` directory, regardless of extension.
229
+
This option is primarely intended for use in combination with the `--no-config-lookup` option, since in that case there is no configuration file in which the additional extensions would be specified.
0 commit comments