mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
6 lines
195 B
JavaScript
6 lines
195 B
JavaScript
module.exports = {
|
|
'*.(js|ts){,x}': 'eslint --cache --fix',
|
|
'*.(ts){,x}': () => 'tsc --noEmit',
|
|
'*.{js,ts,tsx,css,md,html,json}': 'prettier --write',
|
|
'*.go': () => 'make lint-server',
|
|
};
|