tldr/pages/common/eslint.md
2017-10-30 16:32:37 +07:00

283 B
Raw Blame History

eslint

Find problematic patterns or code that doesnt adhere to certain style guidelines.

  • Create eslint config:

eslint --init

  • Fix lint:

eslint --fix

  • Lint on files:

eslint {{filename}}.js

  • Lint with config:

eslint -c {{config file path}} {{filename}}.js