1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 22:42:08 +02:00
tldr/pages/common/eslint.md
2019-06-09 01:54:24 -03:00

20 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}}`