mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
* [eslint] update eslint config to 0.3.0 * [eslint] autofix * [fixtures/hits] reformat to comply with max-len lint rule * [eslint] enable no-var and autofix * [eslint] enable prefer-const and autofix * [eslint] fix autofix-incompatible no-var and prefer-const violations * [eslint] enable quotes+no-extra-semi and autofix
7 lines
155 B
JavaScript
7 lines
155 B
JavaScript
export default function (grunt) {
|
|
grunt.registerTask('precommit', [
|
|
'collectFilesToCommit',
|
|
'checkAddedFilenames',
|
|
'lintStagedFiles'
|
|
]);
|
|
}
|