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

build: introduce central Makefile and live-reload for Go (#184)

This commit is contained in:
Anthony Lapenna 2024-12-03 08:49:03 +13:00 committed by GitHub
parent a261f60764
commit bb6815f681
6 changed files with 113 additions and 16 deletions

View file

@ -1,6 +1,6 @@
module.exports = {
'*.(js|ts){,x}': 'eslint --cache --fix',
'*.(js|ts){,x}': 'yarn lint',
'*.(ts){,x}': () => 'tsc --noEmit',
'*.{js,ts,tsx,css,md,html,json}': 'prettier --write',
'*.{js,ts,tsx,css,md,html,json}': 'yarn format',
'*.go': () => 'make lint-server',
};