2025-03-14 21:59:59 -06:00
|
|
|
# eslint
|
|
|
|
|
|
|
|
|
|
> A pluggable linting utility for JavaScript and JSX.
|
|
|
|
|
> More information: <https://eslint.org>.
|
|
|
|
|
|
|
|
|
|
- Create the ESLint configuration file:
|
|
|
|
|
|
|
|
|
|
`eslint --init`
|
|
|
|
|
|
|
|
|
|
- Lint one or more files:
|
|
|
|
|
|
|
|
|
|
`eslint {{path/to/file1.js path/to/file2.js ...}}`
|
|
|
|
|
|
|
|
|
|
- Fix lint issues:
|
|
|
|
|
|
|
|
|
|
`eslint --fix`
|
|
|
|
|
|
|
|
|
|
- Lint using the specified configuration file:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`eslint {{[-c|--config]}} {{path/to/config_file}} {{path/to/file1.js path/to/file2.js}}`
|