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.
|
2019-06-08 01:04:00 +01:00
|
|
|
> More information: <https://eslint.org>.
|
2017-10-30 16:27:33 +07:00
|
|
|
|
|
|
|
- Create eslint config:
|
|
|
|
|
|
|
|
`eslint --init`
|
|
|
|
|
2018-11-05 09:22:39 +01:00
|
|
|
- Lint on a given set of 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}}`
|