| 1 | export default { |
| 2 | '!(docs/**/*)*.{ts,js,html,md,mts}': [ |
| 3 | 'eslint --cache --cache-strategy content --fix', |
| 4 | // don't cache prettier yet, since we use `prettier-plugin-jsdoc`, |
| 5 | // and prettier doesn't invalidate cache on plugin updates" |
| 6 | // https://prettier.io/docs/en/cli.html#--cache |
| 7 | 'prettier --write', |
| 8 | ], |
| 9 | '.cspell/*.txt': ['tsx scripts/fixCSpell.ts'], |
| 10 | '**/*.jison': ['pnpm -w run lint:jison'], |
| 11 | }; |
| 12 |