mirror of https://github.com/portainer/portainer
6 lines
154 B
JavaScript
6 lines
154 B
JavaScript
|
module.exports = {
|
||
|
'*.(js|ts){,x}': 'eslint --cache --fix',
|
||
|
'*.(ts){,x}': () => 'tsc --noEmit',
|
||
|
'*.{js,ts,tsx,css,md,html}': 'prettier --write',
|
||
|
};
|