chore: migrate from ESLint/Prettier to Oxc

This commit is contained in:
2026-02-17 01:26:49 +01:00
parent 57026d652c
commit d0cde4538c
83 changed files with 2567 additions and 4340 deletions
+1 -4
View File
@@ -1,7 +1,4 @@
export const deepMerge = <
Object1 extends object,
Object2 extends object = Object1,
>(
export const deepMerge = <Object1 extends object, Object2 extends object = Object1>(
object1: Object1,
object2: Object2,
): Object1 & Object2 => {