tldr/pages/common/eslint.md

346 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 {{path/to/file1.js path/to/file2.js ...}}

  • Fix lint issues:

eslint --fix

  • Lint with config:

eslint -c {{path/to/config_file}} {{path/to/source}}