Skip to content

Commit 7dd402d

Browse files
authored
docs: Update examples of passing multiple values to a CLI option (#19006)
Fixes #19005
1 parent 064c8b6 commit 7dd402d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/use/command-line-interface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ Options that accept multiple values can be specified by repeating the option or
5454
Examples of options that accept multiple values:
5555

5656
```shell
57-
npx eslint --ext .jsx --ext .js lib/
57+
npx eslint --global describe --global it tests/
5858
# OR
59-
npx eslint --ext .jsx,.js lib/
59+
npx eslint --global describe,it tests/
6060
```
6161

6262
## Options

0 commit comments

Comments
 (0)