gyandeeps / gruntify-eslint

Grunt plugin for Eslint
MIT License
14 stars 8 forks source link

Eslint executed in loop #26

Open jota3 opened 8 years ago

jota3 commented 8 years ago

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 !

gyandeeps commented 8 years ago

Can you setup a test project where i can try this?