eslint

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

Install

All systems
curl cmd.cat/eslint.sh
Arch Arch Linux
pacman -S eslint
OS X
brew install eslint

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

  • Create the ESLint config file:
    eslint --init
  • Lint one or more files:
    eslint path/to/file1.js path/to/file2.js ...
  • Fix lint issues:
    eslint --fix
  • Lint using the specified config:
    eslint -c path/to/config_file path/to/file1.js path/to/file2.js

© tl;dr; authors and contributors