kibana/tasks/config/jscs.js

21 lines
328 B
JavaScript
Raw Normal View History

2015-02-07 21:48:42 +01:00
module.exports = function (grunt) {
return {
options: {
config: '.jscsrc'
},
2015-02-07 21:48:42 +01:00
// just lint the source dir
source: {
src: '<%= lintThese %>',
2015-02-07 21:48:42 +01:00
},
// fix any linting errors that can be fixed
fixup: {
src: '<%= lintThese %>',
options: {
fix: true
}
2015-02-07 21:48:42 +01:00
}
};
};