Re-add prettier (#13812)

Re add prettier in eslint.configs
This commit is contained in:
Charles Bochet
2025-08-11 14:10:04 +02:00
committed by GitHub
parent c8d8fb20c9
commit b14063fe06
168 changed files with 675 additions and 352 deletions
@@ -40,7 +40,10 @@ describe('transformMetadataForComparison', () => {
});
expect(result).toHaveProperty('key-123');
expect((result as Record<string, any>)['key-123']).toEqual({ id: 123, name: 'Test' });
expect((result as Record<string, any>)['key-123']).toEqual({
id: 123,
name: 'Test',
});
});
// Test with an empty array
@@ -1,6 +1,5 @@
import { createHash } from 'crypto';
export function createDeterministicUuid(
uuidOrUuids: string[] | string,
): string {