X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=inline;f=.lintstagedrc.js;h=403bbda9f12c5e4f7e37fb73145b150fb9b1153d;hb=6e5d7052fe741b50e68f8614b33d3754be41415f;hp=361afe3d2718bf20f580fb1f74b4662945c3a78b;hpb=7b7d96315331635fa3c8a12b03b6893fe91bf8ec;p=poolifier.git diff --git a/.lintstagedrc.js b/.lintstagedrc.js index 361afe3d..403bbda9 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -1,9 +1,9 @@ -module.exports = { +export default { '**/*.{ts,tsx,js,jsx,cjs,mjs}': [ - 'biome format --write', - 'ts-standard --fix', - 'eslint --cache --fix' + // 'biome format --write', + // 'eslint --cache --fix', + 'eslint --cache', ], - '**/!(package.json|tsconfig.json)*.json': ['biome format --write'], - '**/*.{md,yml,yaml}': ['prettier --cache --write'] + '**/*.json': ['biome format --write'], + '**/*.{md,yml,yaml}': ['prettier --cache --write'], }