X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.lintstagedrc.js;h=aca15ab770f665c9fa9de2ff15cf036112cbde45;hb=d528d2b38f6b04d394b79b507fb074907a876cf5;hp=a247d74dd636806f0d1692053b2f87922424c93b;hpb=8ad621cc1d32ed396fca3ef2ec48337e42d2dcc2;p=poolifier.git diff --git a/.lintstagedrc.js b/.lintstagedrc.js index a247d74d..aca15ab7 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -1,8 +1,8 @@ -module.exports = { +export default { '**/*.{ts,tsx,js,jsx,cjs,mjs}': [ - 'rome format --write', - 'ts-standard --fix', + 'biome format --write', 'eslint --cache --fix' ], - '**/*.{json,md,yml,yaml}': ['rome format --write'] + '**/*.json': ['biome format --write'], + '**/*.{md,yml,yaml}': ['prettier --cache --write'] }