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