mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
26 lines
553 B
Plaintext
26 lines
553 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# eslint
|
|
|
|
> A pluggable linting utility for JavaScript and JSX.
|
|
> More information: <https://eslint.org/docs/latest/use/command-line-interface>.
|
|
|
|
- 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:
|
|
|
|
`eslint {{[-c|--config]}} {{path/to/config_file}} {{path/to/file1.js path/to/file2.js ...}}`
|