Files
backroad/lint-staged.config.js
2025-12-29 10:14:57 +02:00

7 lines
187 B
JavaScript

module.exports = {
'*.(js|ts){,x}': 'pnpm run lint',
'*.(ts){,x}': () => 'tsc --noEmit',
'*.{js,ts,tsx,css,md,html,json}': 'pnpm run format',
'*.go': () => 'make lint-server',
};