1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-18 21:09:40 +02:00
portainer/lint-staged.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
179 B
JavaScript
Raw Normal View History

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