23 lines
341 B
JavaScript
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'
|
|
]
|
|
}
|
|
}
|
|
}
|
|
|
|
|