I'm trying to get started using ESLint from this tutorial: https://davidwalsh.name/eslint
I've copied the example file. When I run eslint uploader.js
in its directory, nothing happens - there is a line break, and then the prompt returns. No output at all.
I've run it on a JSON file in the same directory, and used a Grunt task to run it on all JS files project wide. These return a few errors, but nothing near what I'm expecting.
When I run eslint
on the command line, it acts as expected - returning arguments and options documentation. I've tried rebooting the instance, reinstalling ESLint, intentionally introducing egrigious errors into uploader.js
, but nothing happens, much less the output displayed in the tutorial. Can someone help?
Starting from version 1.0.0 of ESLint, all linting rules are turned off by default.
That tutorial was written before this version, which would have expected some errors to show up without a configuration file. The official website provides a migration guide. In your case, you may wish to extend your ".eslintrc" file with "eslint:recommended" throughout that tutorial (or simply include the intended rules manually). Here's the closest you can get from the previous versions, according to the guide:
Since version 3.0.0, ESLint will refuse to work without a configuration file, printing an error message instead. This will hopefully prevent people from running into this issue.