I've tried to integrate the plugin (v3.1.0) but it seems eslint is executed in a loop :
Running "eslint" task
Running "eslint" task
...
(that's all I can get from the verbose mode of grunt)
and he actually never detects any error.
My config is the following :
grunt.config.init({
eslint: {
src: ['scripts/test.js'],
options: {
configFile: 'eslint/eslint-config.json'
}
}
});
grunt.registerTask('eslint', ['eslint']);
Do you have any idea why it is happening ?
Thank you very much for your help !
I've tried to integrate the plugin (v3.1.0) but it seems eslint is executed in a loop :
...
(that's all I can get from the verbose mode of grunt)
and he actually never detects any error.
Do you have any idea why it is happening ? Thank you very much for your help !