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