]> git.proxmox.com Git - pve-eslint.git/blame - eslint/docs/user-guide/command-line-interface.md
import eslint 7.28.0
[pve-eslint.git] / eslint / docs / user-guide / command-line-interface.md
CommitLineData
eb39fafa
DC
1# Command Line Interface
2
3To run ESLint on Node.js, you must have npm installed. If npm is not installed, follow the instructions here: https://www.npmjs.com/
4
5Once npm is installed, run the following
6
7 npm i -g eslint
8
9This installs the ESLint CLI from the npm repository. To run ESLint, use the following format:
10
11 eslint [options] [file|dir|glob]*
12
13Such as:
14
15 eslint file1.js file2.js
16
17or:
18
19 eslint lib/**
20
21Please note that when passing a glob as a parameter, it will be 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:
22
23 eslint "lib/**"
24
25## Options
26
27The command line utility has several options. You can view the options by running `eslint -h`.
28
29```text
30eslint [options] file.js [file.js] [dir]
31
32Basic configuration:
33 --no-eslintrc Disable use of configuration from .eslintrc.*
34 -c, --config path::String Use this configuration, overriding .eslintrc.* config options if present
35 --env [String] Specify environments
36 --ext [String] Specify JavaScript file extensions - default: .js
37 --global [String] Define global variables
38 --parser String Specify the parser to be used
39 --parser-options Object Specify parser options
40 --resolve-plugins-relative-to path::String A folder where plugins should be resolved from, CWD by default
41
42Specifying rules and plugins:
43 --rulesdir [path::String] Use additional rules from this directory
44 --plugin [String] Specify plugins
45 --rule Object Specify rules
46
47Fixing problems:
48 --fix Automatically fix problems
49 --fix-dry-run Automatically fix problems without saving the changes to the file system
50 --fix-type Array Specify the types of fixes to apply (problem, suggestion, layout)
51
52Ignoring files:
53 --ignore-path path::String Specify path of ignore file
54 --no-ignore Disable use of ignore files and patterns
55 --ignore-pattern [String] Pattern of files to ignore (in addition to those in .eslintignore)
56
57Using stdin:
58 --stdin Lint code provided on <STDIN> - default: false
59 --stdin-filename String Specify filename to process STDIN as
60
61Handling warnings:
62 --quiet Report errors only - default: false
63 --max-warnings Int Number of warnings to trigger nonzero exit code - default: -1
64
65Output:
66 -o, --output-file path::String Specify file to write report to
67 -f, --format String Use a specific output format - default: stylish
68 --color, --no-color Force enabling/disabling of color
69
70Inline configuration comments:
71 --no-inline-config Prevent comments from changing config or rules
72 --report-unused-disable-directives Adds reported errors for unused eslint-disable directives
73
74Caching:
75 --cache Only check changed files - default: false
76 --cache-file path::String Path to the cache file. Deprecated: use --cache-location - default: .eslintcache
77 --cache-location path::String Path to the cache file or directory
5422a9cc 78 --cache-strategy String Strategy to use for detecting changed files - either: metadata or content - default: metadata
eb39fafa
DC
79
80Miscellaneous:
81 --init Run config initialization wizard - default: false
82 --env-info Output execution environment information - default: false
83 --no-error-on-unmatched-pattern Prevent errors when pattern is unmatched - default: false
84 --debug Output debugging information
85 -h, --help Show help
86 -v, --version Output the version number
87 --print-config path::String Print the configuration for the given file
88```
89
90Options that accept array 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).
91
92Example:
93
94 eslint --ext .jsx --ext .js lib/
95
96 eslint --ext .jsx,.js lib/
97
98### Basic configuration
99
100#### `--no-eslintrc`
101
102Disables use of configuration from `.eslintrc.*` and `package.json` files.
103
104Example:
105
106 eslint --no-eslintrc file.js
107
108#### `-c`, `--config`
109
110This option allows you to specify an additional configuration file for ESLint (see [Configuring ESLint](configuring) for more).
111
112Example:
113
114 eslint -c ~/my-eslint.json file.js
115
116This example uses the configuration file at `~/my-eslint.json`.
117
118If `.eslintrc.*` and/or `package.json` files are also used for configuration (i.e., `--no-eslintrc` was not specified), the configurations will be merged. Options from this configuration file have precedence over the options from `.eslintrc.*` and `package.json` files.
119
120#### `--env`
121
5422a9cc 122This option enables specific environments. Details about the global variables defined by each environment are available on the [Specifying Environments](configuring/language-options.md#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.
eb39fafa
DC
123
124Examples:
125
126 eslint --env browser,node file.js
127 eslint --env browser --env node file.js
128
129#### `--ext`
130
131This option allows you to specify which file extensions ESLint will use when searching for target files in the directories you specify.
132By default, ESLint lints `*.js` files and the files that match the `overrides` entries of your configuration.
133
134Examples:
135
136 # Use only .ts extension
137 eslint . --ext .ts
138
139 # Use both .js and .ts
140 eslint . --ext .js --ext .ts
141
142 # Also use both .js and .ts
143 eslint . --ext .js,.ts
144
145**Note:** `--ext` is only used when the arguments are directories. If you use glob patterns or file names, then `--ext` is ignored.
146
147For example, `eslint lib/* --ext .js` will match all files within the `lib/` directory, regardless of extension.
148
149#### `--global`
150
151This option defines global variables so that they will not be flagged as undefined by the `no-undef` rule. Any specified global variables are assumed to be read-only by default, but appending `:true` to a variable's name ensures that `no-undef` will also allow writes. To specify multiple global variables, separate them using commas, or use the option multiple times.
152
153Examples:
154
155 eslint --global require,exports:true file.js
156 eslint --global require --global exports:true
157
158#### `--parser`
159
160This option allows you to specify a parser to be used by ESLint. By default, `espree` will be used.
161
162#### `--parser-options`
163
164This option allows you to specify parser options to be used by ESLint. Note that the available parser options are determined by the parser being used.
165
166Examples:
167
168 echo '3 ** 4' | eslint --stdin --parser-options=ecmaVersion:6 # will fail with a parsing error
169 echo '3 ** 4' | eslint --stdin --parser-options=ecmaVersion:7 # succeeds, yay!
170
171#### `--resolve-plugins-relative-to`
172
173Changes the folder where plugins are resolved from. By default, plugins are resolved from the current working directory. 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:
174
175* When using a config file that is located outside of the current project (with the `--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.
176* If an integration has dependencies on ESLint and a set of plugins, and the tool invokes ESLint on behalf of the user with a preset configuration, the tool should set `--resolve-plugins-relative-to` to the top-level directory of the tool.
177
178### Specifying rules and plugins
179
180#### `--rulesdir`
181
182This 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.
183
184Example:
185
186 eslint --rulesdir my-rules/ file.js
187
188The rules in your custom rules directory must follow the same format as bundled rules to work properly. You can also specify multiple locations for custom rules by including multiple `--rulesdir` options:
189
190 eslint --rulesdir my-rules/ --rulesdir my-other-rules/ file.js
191
192Note 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.
193
194#### `--plugin`
195
196This option specifies a plugin to load. You can omit the prefix `eslint-plugin-` from the plugin name.
197
198Before using the plugin, you have to install it using npm.
199
200Examples:
201
202 eslint --plugin jquery file.js
203 eslint --plugin eslint-plugin-mocha file.js
204
205#### `--rule`
206
207This option specifies rules to be used. These rules will be merged with any rules specified with configuration files. (You can use `--no-eslintrc` to change that behavior.) To define multiple rules, separate them using commas, or use the option multiple times. The [levn](https://github.com/gkz/levn#levn--) format is used for specifying the rules.
208
209If the rule is defined within a plugin, you have to prefix the rule ID with the plugin name and a `/`.
210
211Examples:
212
213 eslint --rule 'quotes: [2, double]'
214 eslint --rule 'guard-for-in: 2' --rule 'brace-style: [2, 1tbs]'
215 eslint --rule 'jquery/dollar-sign: 2'
216
217### Fixing problems
218
219#### `--fix`
220
221This 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:
222
2231. This option throws an error when code is piped to ESLint.
2241. This option has no effect on code that uses a processor, unless the processor opts into allowing autofixes.
225
226If 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`](#--fix-dry-run) option.
227
228#### `--fix-dry-run`
229
230This option has the same effect as `--fix` with one difference: the fixes are not saved to the file system. This makes it possible to fix code from `stdin` (when used with the `--stdin` flag).
231
232Because the default formatter does not output the fixed code, you'll have to use another one (e.g. `json`) to get the fixes. Here's an example of this pattern:
233
234```
235getSomeText | eslint --stdin --fix-dry-run --format=json
236```
237
238This 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.
239
240#### `--fix-type`
241
242This option allows you to specify the type of fixes to apply when using either `--fix` or `--fix-dry-run`. The three types of fixes are:
243
2441. `problem` - fix potential errors in the code
2451. `suggestion` - apply fixes to the code that improve it
2461. `layout` - apply fixes that do not change the program structure (AST)
247
248You can specify one or more fix type on the command line. Here are some examples:
249
250```
251eslint --fix --fix-type suggestion .
252eslint --fix --fix-type suggestion --fix-type problem .
253eslint --fix --fix-type suggestion,layout .
254```
255
256This 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.
257
258### Ignoring files
259
260#### `--ignore-path`
261
262This option allows you to specify the file to use as your `.eslintignore`. By default, ESLint looks in the current working directory for `.eslintignore`. You can override this behavior by providing a path to a different file.
263
264Example:
265
266 eslint --ignore-path tmp/.eslintignore file.js
267 eslint --ignore-path .gitignore file.js
268
269#### `--no-ignore`
270
271Disables excluding of files from `.eslintignore`, `--ignore-path`, `--ignore-pattern`, and `ignorePatterns` property in config files.
272
273Example:
274
275 eslint --no-ignore file.js
276
277#### `--ignore-pattern`
278
5422a9cc 279This option allows you to specify patterns of files to ignore (in addition to those in `.eslintignore`). You can repeat the option to provide multiple patterns. The supported syntax is the same as for `.eslintignore` [files](configuring/ignoring-code.md#the-eslintignore-file), which use the same patterns as the `.gitignore` [specification](https://git-scm.com/docs/gitignore). You should quote your patterns in order to avoid shell interpretation of glob patterns.
eb39fafa
DC
280
281Example:
282
283 eslint --ignore-pattern '/lib/' --ignore-pattern '/src/vendor/*' .
284
285### Using stdin
286
287#### `--stdin`
288
289This option tells ESLint to read and lint source code from STDIN instead of from files. You can use this to pipe code to ESLint.
290
291Example:
292
293 cat myfile.js | eslint --stdin
294
295#### `--stdin-filename`
296
297This 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.
298
299Example
300
301 cat myfile.js | eslint --stdin --stdin-filename=myfile.js
302
303### Handling warnings
304
305#### `--quiet`
306
307This option allows you to disable reporting on warnings. If you enable this option, only errors are reported by ESLint.
308
309Example:
310
311 eslint --quiet file.js
312
313#### `--max-warnings`
314
315This 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.
316
317Normally, if ESLint runs and finds no errors (only warnings), it will exit with a success exit status. However, if `--max-warnings` is specified and the total warning count is greater than the specified threshold, ESLint will exit with an error status. Specifying a threshold of `-1` or omitting this option will prevent this behavior.
318
319Example:
320
321 eslint --max-warnings 10 file.js
322
323### Output
324
325#### `-o`, `--output-file`
326
327Enable report to be written to a file.
328
329Example:
330
331 eslint -o ./test/test.html
332
333When specified, the given format is output into the provided file name.
334
335#### `-f`, `--format`
336
337This option specifies the output format for the console. Possible formats are:
338
339* [checkstyle](formatters.md/#checkstyle)
340* [codeframe](formatters.md/#codeframe)
341* [compact](formatters.md/#compact)
342* [html](formatters.md/#html)
343* [jslint-xml](formatters.md/#jslint-xml)
344* [json](formatters.md/#json)
345* [junit](formatters.md/#junit)
346* [stylish](formatters.md/#stylish) (the default)
347* [table](formatters.md/#table)
348* [tap](formatters.md/#tap)
349* [unix](formatters.md/#unix)
350* [visualstudio](formatters.md/#visualstudio)
351
352Example:
353
354 eslint -f compact file.js
355
356You can also use a custom formatter from the command line by specifying a path to the custom formatter file.
357
358Example:
359
360 eslint -f ./customformat.js file.js
361
362An npm-installed formatter is resolved with or without `eslint-formatter-` prefix.
363
364Example:
365
366 npm install eslint-formatter-pretty
367
368 eslint -f pretty file.js
369
370 // equivalent:
371 eslint -f eslint-formatter-pretty file.js
372
373When 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:
374
375 eslint -f compact file.js > results.txt
376
377This saves the output into the `results.txt` file.
378
379#### `--color`, `--no-color`
380
381This option forces the enabling/disabling of colorized output. You can use this 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`.
382
383Examples:
384
385 eslint --color file.js | cat
386 eslint --no-color file.js
387
388### Inline configuration comments
389
390#### `--no-inline-config`
391
392This option prevents inline comments like `/*eslint-disable*/` or
393`/*global foo*/` from having any effect. This allows you to set an ESLint
394config without files modifying it. All inline config comments are ignored, e.g.:
395
396* `/*eslint-disable*/`
397* `/*eslint-enable*/`
398* `/*global*/`
399* `/*eslint*/`
400* `/*eslint-env*/`
401* `// eslint-disable-line`
402* `// eslint-disable-next-line`
403
404Example:
405
406 eslint --no-inline-config file.js
407
408#### `--report-unused-disable-directives`
409
410This 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.
411
412**Warning**: When using this option, it is possible that new errors will start being reported whenever ESLint or custom rules are upgraded. For example, suppose a rule has a bug that causes it to report a false positive, and an `eslint-disable` comment is added to suppress the incorrect report. If the bug is then fixed in a patch release of ESLint, the `eslint-disable` comment will become unused since ESLint is no longer generating an incorrect report. This will result in a new reported error for the unused directive if the `report-unused-disable-directives` option is used.
413
414Example:
415
416 eslint --report-unused-disable-directives file.js
417
418### Caching
419
420#### `--cache`
421
422Store the info about processed files in order to only operate on the changed ones. The cache is stored in `.eslintcache` by default. Enabling this option can dramatically improve ESLint's running time by ensuring that only changed files are linted.
423
424**Note:** 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.
425
426**Note:** Autofixed files are not placed in the cache. Subsequent linting that does not trigger an autofix will place it in the cache.
427
428#### `--cache-file`
429
430Path to the cache file. If none specified `.eslintcache` will be used. The file will be created in the directory where the `eslint` command is executed. **Deprecated**: Use `--cache-location` instead.
431
432#### `--cache-location`
433
434Path to the cache location. Can be a file or a directory. If no location is specified, `.eslintcache` will be used. In that case, the file will be created in the directory where the `eslint` command is executed.
435
436If a directory is specified, a cache file will be created inside the specified folder. The name of the file will be based on the hash of the current working directory (CWD). e.g.: `.cache_hashOfCWD`
437
438**Important note:** If the directory for the cache does not exist make sure you add a trailing `/` on \*nix systems or `\` in windows. Otherwise the path will be assumed to be a file.
439
440Example:
441
442 eslint "src/**/*.js" --cache --cache-location "/Users/user/.eslintcache/"
443
5422a9cc
TL
444#### `--cache-strategy`
445
446Strategy for the cache to use for detecting changed files. Can be either `metadata` or `content`. If no strategy is specified, `metadata` will be used.
447
448The `content` strategy can be useful in cases where the modification time of your files change 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.
449
450Example:
451
452 eslint "src/**/*.js" --cache --cache-strategy content
453
eb39fafa
DC
454### Miscellaneous
455
456#### `--init`
457
458This option will start config initialization wizard. It's designed to help new users quickly create .eslintrc file by answering a few questions, choosing a popular style guide, or inspecting your source files and attempting to automatically generate a suitable configuration.
459
460The resulting configuration file will be created in the current directory.
461
462#### `--env-info`
463
464This option outputs information about the execution environment, including the version of Node, npm, and local and global installations of ESLint. The ESLint team may ask for this information to help solve bugs.
465
466#### `--no-error-on-unmatched-pattern`
467
468This option prevents errors when a quoted glob pattern or `--ext` is unmatched. This will not prevent errors when your shell can't match a glob.
469
470#### `--debug`
471
472This option outputs debugging information to the console. 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.
473
474#### `-h`, `--help`
475
476This option outputs the help menu, displaying all of the available options. All other options are ignored when this is present.
477
478#### `-v`, `--version`
479
480This option outputs the current ESLint version onto the console. All other options are ignored when this is present.
481
482#### `--print-config`
483
484This option outputs the configuration to be used for the file passed. When present, no linting is performed and only config-related options are valid.
485
486Example:
487
488 eslint --print-config file.js
489
490## Ignoring files from linting
491
492ESLint supports `.eslintignore` files to exclude files from the linting process when ESLint operates on a directory. Files given as individual CLI arguments will be exempt from exclusion. The `.eslintignore` file is a plain text file containing one pattern per line. It can be located in any of the target directory's ancestors; it will affect files in its containing directory as well as all sub-directories. Here's a simple example of a `.eslintignore` file:
493
494 temp.js
495 **/vendor/*.js
496
5422a9cc 497A more detailed breakdown of supported patterns and directories ESLint ignores by default can be found in [Ignoring Code](configuring/ignoring-code.md).
eb39fafa
DC
498
499## Exit codes
500
501When linting files, ESLint will exit with one of the following exit codes:
502
503* `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`.
504* `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.
505* `2`: Linting was unsuccessful due to a configuration problem or an internal error.