mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
288 B
288 B
eslint
A pluggable linting utility for JavaScript and JSX.
- 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}}