17 lines
250 B
JavaScript
17 lines
250 B
JavaScript
module.exports = function( grunt ) {
|
|
|
|
grunt.loadNpmTasks( "grunt-contrib-jshint" );
|
|
|
|
grunt.initConfig({
|
|
jshint: {
|
|
files: [ "*.js", "tasks/**/*.js" ],
|
|
options: {
|
|
jshintrc: ".jshintrc"
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.registerTask( "default", "jshint" );
|
|
|
|
};
|