mirror of https://github.com/CrimsonTome/tldr.git
21 lines
330 B
Markdown
21 lines
330 B
Markdown
# eslint
|
|
|
|
> A pluggable linting utility for JavaScript and JSX.
|
|
> More information: <https://eslint.org>.
|
|
|
|
- Create eslint config:
|
|
|
|
`eslint --init`
|
|
|
|
- Lint on a given set of files:
|
|
|
|
`eslint {{filename}}.js {{filename1}}.js`
|
|
|
|
- Fix lint issues:
|
|
|
|
`eslint --fix`
|
|
|
|
- Lint with config:
|
|
|
|
`eslint -c {{path/to/config_file}} {{app/src}}`
|