Skip to main content

A pluggable linting utility for JavaScript and JSX.

# To create eslint config:
eslint --init

# To lint multiple files:
eslint filename.js filename1.js

# To fix lint issues:
eslint --fix

# To lint with config:
eslint -c path/to/config_file app/src