Having trouble setting up jshint options for grunt
Here is my gruntfile.js
grunt.initConfig( {
    jshint : {
        options: { 
            curly: false,
            asi: true,
            eqeqeq: false,
            maxparams: 5,
            undef: false,
            unused: false,
            eqnull: true,
            browser: true,
            devel: true,
            expr: true,
            jquery: true ,
            evil : true 
        },
        files : { 
            src : [ 
                'dev/*.js', 'dev/**/*.js' ,  
                'files-lib/*.js', 'files-lib/**/*.js' ]
        },
    }, 
still getting the errors
71 | return (this.optional(element) && value=="") || re.test(value); ^ Use '===' to compare with ''.
Thanks for helping
 
    