Last Updated: February 25, 2016
·
2.201K
· usharf

Reuse .jshintrc in a grunt project

Simply add a jshintrc property:

jshintrc: '.jshintrc'

Grunt specific settings may still be used:

jshint: {
    grunt: {
        options: { node: true }
        globals: { .... }
    }
}

More https://github.com/gruntjs/grunt/issues/141