Update eslint.md

This commit is contained in:
phillip055
2017-10-31 00:04:41 +07:00
committed by GitHub
parent 9321f2686f
commit c46e032e08

View File

@@ -1,19 +1,19 @@
# eslint
> Find problematic patterns or code that doesnt adhere to certain style guidelines.
> A pluggable linting utility for JavaScript and JSX.
- Create eslint config:
`eslint --init`
- Fix lint:
- Lint on files:
`eslint {{filename}}.js {{filename1}}.js`
- Fix lint issues:
`eslint --fix`
- Lint on files:
`eslint {{filename}}.js`
- Lint with config:
`eslint -c {{path/to/config_file}} {{filename}}.js`
`eslint -c {{path/to/config_file}} {{app/src}}`