Files
compiler-explorer/lint-staged.config.mjs
Matt Godbolt 894a9646b4 Run lint first
2025-02-26 13:40:39 -06:00

6 lines
170 B
JavaScript

export default {
'*.ts': ['npm run lint', () => 'npm run ts-check'],
'*.js': ['npm run format-files --', 'npm run lint'],
'*.{html,md}': ['npm run lint'],
};