mermaid/.lintstagedrc.mjs

12 lines
421 B
JavaScript
Raw Normal View History

2022-11-22 23:05:27 +05:30
export default {
2023-05-08 18:46:14 +05:30
'!(docs/**/*)*.{ts,js,html,md,mts}': [
'eslint --cache --cache-strategy content --fix',
// don't cache prettier yet, since we use `prettier-plugin-jsdoc`,
// and prettier doesn't invalidate cache on plugin updates"
// https://prettier.io/docs/en/cli.html#--cache
'prettier --write',
],
'cSpell.json': ['tsx scripts/fixCSpell.ts'],
2022-11-22 23:05:27 +05:30
'**/*.jison': ['pnpm -w run lint:jison'],
};