tldr/pages/common/eslint.md

20 lines
286 B
Markdown
Raw Normal View History

2017-10-30 09:27:33 +00:00
# eslint
2017-10-30 09:32:37 +00:00
> Find problematic patterns or code that doesnt adhere to certain style guidelines.
2017-10-30 09:27:33 +00:00
- Create eslint config:
`eslint --init`
- Fix lint:
`eslint --fix`
- Lint on files:
2017-10-30 09:32:06 +00:00
`eslint {{filename}}.js`
2017-10-30 09:27:33 +00:00
- Lint with config:
2017-10-30 09:38:06 +00:00
`eslint -c {{path/to/config_file}} {{filename}}.js`