kibana/tasks/config/jscs.js

12 lines
183 B
JavaScript
Raw Normal View History

2015-02-07 21:48:42 +01:00
module.exports = function (grunt) {
return {
// just lint the source dir
source: {
src: '<%= lintThese %>'
},
options: {
config: '.jscsrc'
}
};
};