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