X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.lintstagedrc.js;h=aca15ab770f665c9fa9de2ff15cf036112cbde45;hb=HEAD;hp=a247d74dd636806f0d1692053b2f87922424c93b;hpb=8ebe6c308dc1fc3202980126da043b2855d24780;p=poolifier.git diff --git a/.lintstagedrc.js b/.lintstagedrc.js index a247d74d..f9e18d53 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', - 'eslint --cache --fix' + // 'biome format --write', + 'eslint --cache --fix', ], - '**/*.{json,md,yml,yaml}': ['rome format --write'] + '**/*.json': ['biome format --write'], + '**/*.{md,yml,yaml}': ['prettier --cache --write'], }