Files
portainer/lint-staged.config.js
2026-06-18 13:27:01 +12:00

7 lines
222 B
JavaScript

module.exports = {
'*.(js|ts){,x}': 'pnpm eslint --cache --fix',
'*.(ts){,x}': () => 'tsc --noEmit',
'*.{js,ts,tsx,css,md,html,json}': 'pnpm prettier --log-level warn --write',
'*.go': () => 'make lint-server',
};