build(deps-dev): apply updates
[poolifier.git] / .lintstagedrc.js
index 2d7cf819b6d412ba0b33d7d301a801adca5e7cc0..f9e18d534b7e6af18593e0f432db287d4673936a 100644 (file)
@@ -1,8 +1,8 @@
-module.exports = {
-  '**/*.{ts,tsx,js,jsx,mjs,cjs}': [
-    'prettier --cache --write',
-    'ts-standard --fix',
-    'eslint --cache --fix'
+export default {
+  '**/*.{ts,tsx,js,jsx,cjs,mjs}': [
+    // 'biome format --write',
+    'eslint --cache --fix',
   ],
   ],
-  '**/*.{json,md,yml,yaml}': ['prettier --cache --write']
+  '**/*.json': ['biome format --write'],
+  '**/*.{md,yml,yaml}': ['prettier --cache --write'],
 }
 }