This repository was archived by the owner on Apr 25, 2023. It is now read-only.

Description
grunt-contrib-jshint plugin already has such integration and it's integration is easy to be added.
Here is an example that could be used as sample for grunt-sync:
// On watch events configure jshint:src to only run on changed file
grunt.event.on('watch', function(action, filepath) {
grunt.config('jshint.src', filepath);
});