X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=.lintstagedrc.js;h=403bbda9f12c5e4f7e37fb73145b150fb9b1153d;hb=6e5d7052fe741b50e68f8614b33d3754be41415f;hp=3ee7fd306c0b1bdc93b3c719e399e516aa0de255;hpb=de2e7182cca6b34b000a09bf6d0ddcff4757db3a;p=poolifier.git diff --git a/.lintstagedrc.js b/.lintstagedrc.js index 3ee7fd30..403bbda9 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -1,8 +1,9 @@ -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', + 'eslint --cache', ], - '!(.vscode/**)**/*.{json,md,yml,yaml}': ['rome format --write'] + '**/*.json': ['biome format --write'], + '**/*.{md,yml,yaml}': ['prettier --cache --write'], }