1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 21:22:06 +02:00
tldr/pages.pl/common/eslint.md
Michal b0f7b04e8b create eslint.md
initial
2020-04-19 13:31:16 +01:00

330 B

eslint

A pluggable linting utility for JavaScript and JSX. More information: https://eslint.org.

  • 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}}