X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.lintstagedrc.js;h=507f281dd6e4dd4ca0a744a53c4a4c918eb06262;hb=110cef15d1d436c23ba38a793caa5cda14121281;hp=a247d74dd636806f0d1692053b2f87922424c93b;hpb=8ad621cc1d32ed396fca3ef2ec48337e42d2dcc2;p=poolifier.git diff --git a/.lintstagedrc.js b/.lintstagedrc.js index a247d74d..507f281d 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'] + '**/!(package.json|tsconfig.json)*.json': ['biome format --write'], + '**/*.{md,yml,yaml}': ['prettier --cache --write'] }