X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.lintstagedrc.js;h=d68031db0169073c84cd07b4da2898c137245955;hb=a390c10d088110b9cac0d55fab1b1534a1db7e29;hp=3ee7fd306c0b1bdc93b3c719e399e516aa0de255;hpb=c0fcd441040861f53974cccb693a9dd3d4a374ee;p=poolifier.git diff --git a/.lintstagedrc.js b/.lintstagedrc.js index 3ee7fd30..d68031db 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', ], - '!(.vscode/**)**/*.{json,md,yml,yaml}': ['rome format --write'] + '**/*.json': ['biome format --write'], + '**/*.{md,yml,yaml}': ['prettier --cache --write'], }