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