X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.lintstagedrc.js;h=7a131de1aa0a2502561f78c68147c379e52bc813;hb=71439cd1c32086cd91d70ea8db8af58996795e63;hp=eddb147c5b41aeb5811423b139b685e8b952dd10;hpb=6f08178ea990841b8c3c642abcb3a3435768cad2;p=benchmarks-js.git diff --git a/.lintstagedrc.js b/.lintstagedrc.js index eddb147..7a131de 100644 --- a/.lintstagedrc.js +++ b/.lintstagedrc.js @@ -1,8 +1,9 @@ -module.exports = { +export default { '*.{js,jsx,cjs,mjs}': [ - 'rome format --write', + 'biome format --write', 'standard --fix', 'eslint --cache --fix' ], - '!(.vscode/**)*.{json,md,yml,yaml}': ['rome format --write'] + '*.json': ['biome format --write'], + '*.{md,yml,yaml}': ['prettier --cache --write'] }