X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.lintstagedrc.js;h=ed9df14abdca715893d9d825deb72938a006c897;hb=facb41d7d33bd6c11970da5e946c51347824fd54;hp=2d7cf819b6d412ba0b33d7d301a801adca5e7cc0;hpb=e47bed93ee0dde43762d34b3e31224b856331619;p=poolifier.git diff --git a/.lintstagedrc.js b/.lintstagedrc.js index 2d7cf819..ed9df14a 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -1,8 +1,9 @@ module.exports = { - '**/*.{ts,tsx,js,jsx,mjs,cjs}': [ - 'prettier --cache --write', + '**/*.{ts,tsx,js,jsx,cjs,mjs}': [ + 'biome format --write --no-errors-on-unmatched', 'ts-standard --fix', 'eslint --cache --fix' ], - '**/*.{json,md,yml,yaml}': ['prettier --cache --write'] + '!(.vscode/**)**/*.json': ['biome format --write --no-errors-on-unmatched'], + '**/*.{md,yml,yaml}': ['prettier --cache --write'] }