chore: add caching to eslint on git commit

pull/2896/head
Audric Ackermann 2 years ago
parent d0ad89196d
commit 4cd4193b6b

@ -21,7 +21,7 @@ const buildLintCommand = filenames => {
.map(f => path.relative(process.cwd(), f))
.filter(f => !ignoredFiles.includes(f));
return results.length ? `eslint ${results.join(' ')}` : '';
return results.length ? `eslint --cache ${results.join(' ')}` : '';
};
module.exports = {

Loading…
Cancel
Save