Files
cartodb/lib/assets/javascripts/cdb.js/grunt/tasks/jshint.js
2020-06-15 10:58:47 +08:00

23 lines
341 B
JavaScript

/**
* JS hint grunt task for CartoDB.js
*
*/
module.exports = {
task: function() {
return {
options: {
jshintrc: 'grunt/.jshintrc',
reporter: require('jshint-stylish')
},
all: [
'Gruntfile.js',
'<%= config.app %>/js/**/*.js',
'test/spec/**/*.js'
]
}
}
}