The ESLint Command Line Interface (CLI) lets you execute linting from the terminal. The CLI has a variety of options that you can pass to configure ESLint.
ESLint requires Node.js for installation. Follow the instructions in the Getting Started Guide to install ESLint.
Most users use npx
to run ESLint on the command line like this:
npx eslint [options] [file|dir|glob]*
Such as:
# Run on two files
npx eslint file1.js file2.js
# Run on multiple files
npx eslint lib/**
Please note that when passing a glob as a parameter, it is expanded by your shell. The results of the expansion can vary depending on your shell, and its configuration. If you want to use node glob
syntax, you have to quote your parameter (using double quotes if you need it to run in Windows), as follows:
npx eslint "lib/**"
Note: You can also use alternative package managers such as Yarn or pnpm to run ESLint. Please refer to your package manager’s documentation for the correct syntax.
Options that accept multiple values can be specified by repeating the option or with a comma-delimited list (other than --ignore-pattern
, which does not allow the second style).
Examples of options that accept multiple values:
npx eslint --ext .jsx --ext .js lib/
# OR
npx eslint --ext .jsx,.js lib/
You can view all the CLI options by running npx eslint -h
.
eslint [options] file.js [file.js] [dir]
Basic configuration:
--no-eslintrc Disable use of configuration from .eslintrc.*
-c, --config path::String Use this configuration, overriding .eslintrc.* config options if present
--env [String] Specify environments
--ext [String] Specify JavaScript file extensions
--global [String] Define global variables
--parser String Specify the parser to be used
--parser-options Object Specify parser options
--resolve-plugins-relative-to path::String A folder where plugins should be resolved from, CWD by default
Specify rules and plugins:
--plugin [String] Specify plugins
--rule Object Specify rules
--rulesdir [path::String] Load additional rules from this directory. Deprecated: Use rules from plugins
Fix problems:
--fix Automatically fix problems
--fix-dry-run Automatically fix problems without saving the changes to the file system
--fix-type Array Specify the types of fixes to apply (directive, problem, suggestion, layout)
Ignore files:
--ignore-path path::String Specify path of ignore file
--no-ignore Disable use of ignore files and patterns
--ignore-pattern [String] Pattern of files to ignore (in addition to those in .eslintignore)
Use stdin:
--stdin Lint code provided on <STDIN> - default: false
--stdin-filename String Specify filename to process STDIN as
Handle warnings:
--quiet Report errors only - default: false
--max-warnings Int Number of warnings to trigger nonzero exit code - default: -1
Output:
-o, --output-file path::String Specify file to write report to
-f, --format String Use a specific output format - default: stylish
--color, --no-color Force enabling/disabling of color
Inline configuration comments:
--no-inline-config Prevent comments from changing config or rules
--report-unused-disable-directives Adds reported errors for unused eslint-disable directives
Caching:
--cache Only check changed files - default: false
--cache-file path::String Path to the cache file. Deprecated: use --cache-location - default: .eslintcache
--cache-location path::String Path to the cache file or directory
--cache-strategy String Strategy to use for detecting changed files in the cache - either: metadata or content - default: metadata
Miscellaneous:
--init Run config initialization wizard - default: false
--env-info Output execution environment information - default: false
--no-error-on-unmatched-pattern Prevent errors when pattern is unmatched
--exit-on-fatal-error Exit with exit code 2 in case of fatal error - default: false
--debug Output debugging information
-h, --help Show help
-v, --version Output the version number
--print-config path::String Print the configuration for the given file
--no-eslintrc
Disables use of configuration from .eslintrc.*
and package.json
files.
--no-eslintrc
examplenpx eslint --no-eslintrc file.js
-c
, --config
This option allows you to specify an additional configuration file for ESLint (see Configuring ESLint for more).
-c
, --config
examplenpx eslint -c ~/my-eslint.json file.js
This example uses the configuration file at ~/my-eslint.json
.
If .eslintrc.*
and/or package.json
files are also used for configuration (i.e., --no-eslintrc
was not specified), the configurations are merged. Options from this configuration file have precedence over the options from .eslintrc.*
and package.json
files.
--env
This option enables specific environments.
Details about the global variables defined by each environment are available in the Specifying Environments documentation. This option only enables environments. It does not disable environments set in other configuration files. To specify multiple environments, separate them using commas, or use the option multiple times.
--env
examplenpx eslint --env browser,node file.js
npx eslint --env browser --env node file.js
--ext
This option allows you to specify which file extensions ESLint uses when searching for target files in the directories you specify.
.js
and the files that match the overrides
entries of your configuration.--ext
is only used when the 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.
--ext
example# Use only .ts extension
npx eslint . --ext .ts
# Use both .js and .ts
npx eslint . --ext .js --ext .ts
# Also use both .js and .ts
npx eslint . --ext .js,.ts
--global
This option defines global variables so that they are not flagged as undefined by the no-undef
rule.
:true
to a variable’s name ensures that no-undef
also allows writes.--global
examplenpx eslint --global require,exports:true file.js
npx eslint --global require --global exports:true
--parser
This option allows you to specify a parser to be used by ESLint.
espree
--parser
example# Use TypeScript ESLint parser
npx eslint --parser @typescript-eslint/parser file.ts
--parser-options
This option allows you to specify parser options to be used by ESLint. The available parser options are determined by the parser being used.
:
).--parser-options
exampleecho '3 ** 4' | npx eslint --stdin --parser-options ecmaVersion:6 # fails with a parsing error
echo '3 ** 4' | npx eslint --stdin --parser-options ecmaVersion:7 # succeeds, yay!
--resolve-plugins-relative-to
Changes the directory where plugins are resolved from.
This option should be used when plugins were installed by someone other than the end user. It should be set to the project directory of the project that has a dependency on the necessary plugins.
For example:
--config
flag), if the config uses plugins which are installed locally to itself, --resolve-plugins-relative-to
should be set to the directory containing the config file.--resolve-plugins-relative-to
to the top-level directory of the tool.--resolve-plugins-relative-to
examplenpx eslint --config ~/personal-eslintrc.js \
--resolve-plugins-relative-to /usr/local/lib/
--plugin
This option specifies a plugin to load.
eslint-plugin-
from the plugin name.Before using the plugin, you have to install it using npm.
--plugin
examplenpx eslint --plugin jquery file.js
npx eslint --plugin eslint-plugin-mocha file.js
--rule
This option specifies the rules to be used.
These rules are merged with any rules specified with configuration files. If the rule is defined in a plugin, you have to prefix the rule ID with the plugin name and a /
.
To ignore rules in .eslintrc
configuration files and only run rules specified in the command line, use the --rules
flag in combination with the --no-eslintrc
flag.
--rule
example# Apply single rule
npx eslint --rule 'quotes: [error, double]'
# Apply multiple rules
npx eslint --rule 'guard-for-in: error' --rule 'brace-style: [error, 1tbs]'
# Apply rule from jquery plugin
npx eslint --rule 'jquery/dollar-sign: error'
# Only apply rule from the command line
npx eslint --rule 'quotes: [error, double]' --no-eslintrc
--rulesdir
Deprecated: Use rules from plugins instead.
This option allows you to specify another directory from which to load rules files. This allows you to dynamically load new rules at run time. This is useful when you have custom rules that aren’t suitable for being bundled with ESLint.
Note that, as with core rules and plugin rules, you still need to enable the rules in configuration or via the --rule
CLI option in order to actually run those rules during linting. Specifying a rules directory with --rulesdir
does not automatically enable the rules within that directory.
--rulesdir
examplenpx eslint --rulesdir my-rules/ file.js
npx eslint --rulesdir my-rules/ --rulesdir my-other-rules/ file.js
--fix
This option instructs ESLint to try to fix as many issues as possible. The fixes are made to the actual files themselves and only the remaining unfixed issues are output.
Not all problems are fixable using this option, and the option does not work in these situations:
If you want to fix code from stdin
or otherwise want to get the fixes without actually writing them to the file, use the --fix-dry-run
option.
--fix
examplenpx eslint --fix file.js
--fix-dry-run
This option has the same effect as --fix
with the difference that the fixes are not saved to the file system. Because the default formatter does not output the fixed code, you’ll have to use another formatter (e.g. --format json
) to get the fixes.
This makes it possible to fix code from stdin
when used with the --stdin
flag.
This flag can be useful for integrations (e.g. editor plugins) which need to autofix text from the command line without saving it to the filesystem.
--fix-dry-run
examplegetSomeText | npx eslint --stdin --fix-dry-run --format json
--fix-type
This option allows you to specify the type of fixes to apply when using either --fix
or --fix-dry-run
.
problem
- fix potential errors in the codesuggestion
- apply fixes to the code that improve itlayout
- apply fixes that do not change the program structure (AST)directive
- apply fixes to inline directives such as // eslint-disable
This option is helpful if you are using another program to format your code, but you would still like ESLint to apply other types of fixes.
--fix-type
examplenpx eslint --fix --fix-type suggestion .
npx eslint --fix --fix-type suggestion --fix-type problem .
npx eslint --fix --fix-type suggestion,layout .
--ignore-path
This option allows you to specify the file to use as your .eslintignore
.
.eslintignore
in the current working directory.Note: --ignore-path
is not supported when using flat configuration (eslint.config.js
).
--ignore-path
examplenpx eslint --ignore-path tmp/.eslintignore file.js
npx eslint --ignore-path .gitignore file.js
--no-ignore
Disables excluding of files from .eslintignore
files, --ignore-path
flags, --ignore-pattern
flags, and the ignorePatterns
property in config files.
--no-ignore
examplenpx eslint --no-ignore file.js
--ignore-pattern
This option allows you to specify patterns of files to ignore (in addition to those in .eslintignore
).
.eslintignore
files, which use the same patterns as the .gitignore
specification. You should quote your patterns in order to avoid shell interpretation of glob patterns.--ignore-pattern
examplenpx eslint --ignore-pattern "/lib/" --ignore-pattern "/src/vendor/*" .
--stdin
This option tells ESLint to read and lint source code from STDIN instead of from files. You can use this to pipe code to ESLint.
--stdin
examplecat myfile.js | npx eslint --stdin
--stdin-filename
This option allows you to specify a filename to process STDIN as.
This is useful when processing files from STDIN and you have rules which depend on the filename.
--stdin-filename
examplecat myfile.js | npx eslint --stdin --stdin-filename myfile.js
--quiet
This option allows you to disable reporting on warnings. If you enable this option, only errors are reported by ESLint.
--quiet
examplenpx eslint --quiet file.js
--max-warnings
This option allows you to specify a warning threshold, which can be used to force ESLint to exit with an error status if there are too many warning-level rule violations in your project.
-1
as the argument.Normally, if ESLint runs and finds no errors (only warnings), it exits with a success exit status. However, if --max-warnings
is specified and the total warning count is greater than the specified threshold, ESLint exits with an error status.
--max-warnings
examplenpx eslint --max-warnings 10 file.js
-o
, --output-file
Write the output of linting results to a specified file.
-o
, --output-file
examplenpx eslint -o ./test/test.html
-f
, --format
This option specifies the output format for the console.
stylish
If you are using a custom formatter defined in a local file, you can specify the path to the custom formatter file.
An npm-installed formatter is resolved with or without eslint-formatter-
prefix.
When specified, the given format is output to the console. If you’d like to save that output into a file, you can do so on the command line like so:
# Saves the output into the `results.txt` file.
npx eslint -f compact file.js > results.txt
-f
, --format
exampleUse the built-in compact
formatter:
npx eslint --format compact file.js
Use a local custom formatter:
npx eslint -f ./customformat.js file.js
Use an npm-installed formatter:
npm install eslint-formatter-pretty
# Then run one of the following commands
npx eslint -f pretty file.js
# or alternatively
npx eslint -f eslint-formatter-pretty file.js
--color
and --no-color
These options force the enabling/disabling of colorized output.
You can use these options to override the default behavior, which is to enable colorized output unless no TTY is detected, such as when piping eslint
through cat
or less
.
--color
and --no-color
examplenpx eslint --color file.js | cat
npx eslint --no-color file.js
--no-inline-config
This option prevents inline comments like /*eslint-disable*/
or /*global foo*/
from having any effect.
This allows you to set an ESLint config without files modifying it. All inline config comments are ignored, such as:
/*eslint-disable*/
/*eslint-enable*/
/*global*/
/*eslint*/
/*eslint-env*/
// eslint-disable-line
// eslint-disable-next-line
--no-inline-config
examplenpx eslint --no-inline-config file.js
--report-unused-disable-directives
This option causes ESLint to report directive comments like // eslint-disable-line
when no errors would have been reported on that line anyway.
This can be useful to prevent future errors from unexpectedly being suppressed, by cleaning up old eslint-disable
comments which are no longer applicable.
--report-unused-disable-directives
examplenpx eslint --report-unused-disable-directives file.js
--cache
Store the info about processed files in order to only operate on the changed ones. Enabling this option can dramatically improve ESLint’s run time performance by ensuring that only changed files are linted. The cache is stored in .eslintcache
by default.
If you run ESLint with --cache
and then run ESLint without --cache
, the .eslintcache
file will be deleted. This is necessary because the results of the lint might change and make .eslintcache
invalid. If you want to control when the cache file is deleted, then use --cache-location
to specify an alternate location for the cache file.
Autofixed files are not placed in the cache. Subsequent linting that does not trigger an autofix will place it in the cache.
--cache
examplenpx eslint --cache file.js
--cache-file
Deprecated: Use --cache-location
instead.
Path to the cache file. If none specified .eslintcache
is used. The file is created in the directory where the eslint
command is executed.
--cache-location
Specify the path to the cache location. Can be a file or a directory.
.cache_hashOfCWD
..eslintcache
is used. The file is created in the directory where the eslint
command is executed.If the directory for the cache does not exist make sure you add a trailing /
on *nix systems or \
on Windows. Otherwise, the path is assumed to be a file.
--cache-location
examplenpx eslint "src/**/*.js" --cache --cache-location "/Users/user/.eslintcache/"
--cache-strategy
Strategy for the cache to use for detecting changed files.
metadata
content
metadata
The content
strategy can be useful in cases where the modification time of your files changes even if their contents have not. For example, this can happen during git operations like git clone
because git does not track file modification time.
--cache-strategy
examplenpx eslint "src/**/*.js" --cache --cache-strategy content
--init
This option runs npm init @eslint/config
to start the config initialization wizard. It’s designed to help new users quickly create an .eslintrc
file by answering a few questions. When you use this flag, the CLI does not perform linting.
The resulting configuration file is created in the current directory.
--init
examplenpx eslint --init
--env-info
This option outputs information about the execution environment, including the version of Node.js, npm, and local and global installations of ESLint.
The ESLint team may ask for this information to help solve bugs. When you use this flag, the CLI does not perform linting.
--env-info
examplenpx eslint --env-info
--no-error-on-unmatched-pattern
This option prevents errors when a quoted glob pattern or --ext
is unmatched. This does not prevent errors when your shell can’t match a glob.
--no-error-on-unmatched-pattern
examplenpx eslint --no-error-on-unmatched-pattern --ext .ts "lib/*"
--exit-on-fatal-error
This option causes ESLint to exit with exit code 2 if one or more fatal parsing errors occur. Without this option, ESLint reports fatal parsing errors as rule violations.
--exit-on-fatal-error
examplenpx eslint --exit-on-fatal-error file.js
--debug
This option outputs debugging information to the console. Add this flag to an ESLint command line invocation in order to get extra debugging information while the command runs.
This information is useful when you’re seeing a problem and having a hard time pinpointing it. The ESLint team may ask for this debugging information to help solve bugs.
--debug
examplenpx eslint --debug test.js
-h
, --help
This option outputs the help menu, displaying all of the available options. All other options are ignored when this is present. When you use this flag, the CLI does not perform linting.
-h
, --help
examplenpx eslint --help
-v
, --version
This option outputs the current ESLint version onto the console. All other options are ignored when this is present. When you use this flag, the CLI does not perform linting.
-v
, --version
examplenpx eslint --version
--print-config
This option outputs the configuration to be used for the file passed. When present, no linting is performed and only config-related options are valid. When you use this flag, the CLI does not perform linting.
--print-config
examplenpx eslint --print-config file.js
When linting files, ESLint exits with one of the following exit codes:
0
: Linting was successful and there are no linting errors. If the --max-warnings
flag is set to n
, the number of linting warnings is at most n
.1
: Linting was successful and there is at least one linting error, or there are more linting warnings than allowed by the --max-warnings
option.2
: Linting was unsuccessful due to a configuration problem or an internal error.
© OpenJS Foundation and other contributors
Licensed under the MIT License.
https://eslint.org/docs/latest/user-guide/command-line-interface