mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
7 lines
155 B
JavaScript
7 lines
155 B
JavaScript
export default function (grunt) {
|
|
grunt.registerTask('precommit', [
|
|
'collectStagedFiles',
|
|
'checkStagedFilenames',
|
|
'lintStagedFiles'
|
|
]);
|
|
};
|