Applies ruff format, ruff check --fix and prettier, so CI can gate on all three. The surviving unused imports were all re-exports in __init__.py, now covered by a per-file ignore; the pdf.js viewer and the generated openapi types join the vendored code that eslint and prettier already skip.
23 lines
487 B
TypeScript
23 lines
487 B
TypeScript
import Badge from './avatar-badge.svelte';
|
|
import Fallback from './avatar-fallback.svelte';
|
|
import GroupCount from './avatar-group-count.svelte';
|
|
import Group from './avatar-group.svelte';
|
|
import Image from './avatar-image.svelte';
|
|
import Root from './avatar.svelte';
|
|
|
|
export {
|
|
Root,
|
|
Image,
|
|
Fallback,
|
|
Badge,
|
|
Group,
|
|
GroupCount,
|
|
//
|
|
Root as Avatar,
|
|
Image as AvatarImage,
|
|
Fallback as AvatarFallback,
|
|
Badge as AvatarBadge,
|
|
Group as AvatarGroup,
|
|
GroupCount as AvatarGroupCount
|
|
};
|