1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/eslint.md

20 lines
273 B
Markdown
Raw Normal View History

2017-10-30 16:27:33 +07:00
# eslint
2017-10-31 00:04:41 +07:00
> A pluggable linting utility for JavaScript and JSX.
2017-10-30 16:27:33 +07:00
- Create eslint config:
`eslint --init`
2017-10-31 00:04:41 +07:00
- Lint on files:
2017-10-30 16:27:33 +07:00
2017-10-31 00:04:41 +07:00
`eslint {{filename}}.js {{filename1}}.js`
2017-10-30 16:27:33 +07:00
2017-10-31 00:04:41 +07:00
- Fix lint issues:
2017-10-30 16:27:33 +07:00
2017-10-31 00:04:41 +07:00
`eslint --fix`
2017-10-30 16:27:33 +07:00
- Lint with config:
2017-10-31 00:04:41 +07:00
`eslint -c {{path/to/config_file}} {{app/src}}`