kibana/tasks/config/jshint.js
Spencer Alger f3237ea178 Summary of Changes:
- rounded intervals now come with a "description" property that gives a simple human-readable description of the interval. (ie. "5 hours", "10 sec")
 - auto and scaled buckets now display the interval for the measurements
 - expanded the parsing abilities of `toMs()`
 - renamed `toMS()` to `toMs()`
 - histogram will now use the field's converter for creating the tooltip.
 - date field format added
2014-05-27 14:16:31 -07:00

24 lines
459 B
JavaScript

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