mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 06:47:33 +00:00
16 lines
373 B
JavaScript
16 lines
373 B
JavaScript
export default {
|
|
'./**/*.js': (stagedFiles) => formatAndEslint(stagedFiles),
|
|
|
|
'./**/*.{ts,tsx,vue,mts}': (stagedFiles) => [
|
|
...formatAndEslint(stagedFiles),
|
|
'pnpm typecheck'
|
|
]
|
|
}
|
|
|
|
function formatAndEslint(fileNames) {
|
|
return [
|
|
`pnpm exec eslint --cache --fix ${fileNames.join(' ')}`,
|
|
`pnpm exec prettier --cache --write ${fileNames.join(' ')}`
|
|
]
|
|
}
|