I'm working on a sample React project, where I'm using HMR for hot reloading, but I have a use case where I want to lint and test my files on every save, is there a plugin or a hack to tie these two behaviors with the HMR?
Try using eslint-loader. It works with HMR and shows lint errors in both console and browser.
Vasan Subramanian
Previous generation techie
I use Atom, with the linter and linter-eslint packages. This shows lint errors on the fly, and is very convenient. I don't have to look at the console for lint errors.