build(deps-dev): Bump eslint-plugin-jsdoc from 48.1.0 to 48.2.0
[benchmarks-js.git] / .lintstagedrc.js
index b8427937a014975025fc04d4d79bfb7f02bafb64..1c4c8e46533e262ec75b2b665b4f03914d780784 100644 (file)
@@ -1,8 +1,9 @@
-module.exports = {
+export default {
   '*.{js,jsx,cjs,mjs}': [
-    'prettier --cache --write',
+    'biome format --write',
     'standard --fix',
     'eslint --cache --fix'
   ],
-  '*.{json,md,yml,yaml}': ['prettier --cache --write']
+  '!(package.json)*.json': ['biome format --write'],
+  '*.{md,yml,yaml}': ['prettier --cache --write']
 }