Update .lintstagedrc.js
[poolifier.git] / .lintstagedrc.js
1 module.exports = {
2 '**/*.{ts,tsx,js,jsx,cjs,mjs}': [
3 'biome format --write,
4 'ts-standard --fix',
5 'eslint --cache --fix'
6 ],
7 '!(.vscode/**)**/*.json': ['biome format --write --no-errors-on-unmatched'],
8 '**/*.{md,yml,yaml}': ['prettier --cache --write']
9 }