kibana/tasks/config/jshint.js
2014-03-05 14:13:23 -07:00

24 lines
No EOL
472 B
JavaScript

module.exports = function (config) {
return {
// just lint the source dir
source: {
files: {
src: [
'Gruntfile.js',
'<%= src %>/**/*.js',
'<%= unitTestDir %>/**/*.js',
'<%= root %>/tasks/**/*.js'
]
}
},
options: {
jshintrc: true,
ignores: [
'node_modules/*',
'dist/*',
'sample/*',
'<%= root %>/src/bower_components/**/*'
]
}
};
};