kibana/tasks/config/jshint.js
Chris Cowan 2b9802030c Closes #2377 - Migrate config from > GA
- Closes #2377
- Added testing framework for server side tests
- Fixed jshint
- Added config migration
- Added framework for server initialization
2015-01-23 11:34:29 -07:00

20 lines
487 B
JavaScript

module.exports = function (grunt) {
return {
// just lint the source dir
source: {
files: {
src: [
'Gruntfile.js',
'<%= root %>/tasks/**/*.js',
'<%= src %>/kibana/*.js',
'<%= src %>/server/*.js',
'<%= src %>/kibana/{components,directives,factories,filters,plugins,registry,services,utils}/**/*.js',
'<%= unitTestDir %>/**/*.js'
]
}
},
options: {
jshintrc: true
}
};
};