This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove unused import and add fetch to ESLint globals

Co-authored-by: aider (anthropic/claude-sonnet-4-20250514) <aider@aider.chat>

+3 -1
+2
eslint.config.mjs
··· 29 29 require: 'readonly', 30 30 exports: 'readonly', 31 31 global: 'readonly', 32 + fetch: 'readonly', 32 33 // Jest globals 33 34 describe: 'readonly', 34 35 test: 'readonly', ··· 64 65 require: 'readonly', 65 66 exports: 'readonly', 66 67 global: 'readonly', 68 + fetch: 'readonly', 67 69 // Jest globals 68 70 describe: 'readonly', 69 71 test: 'readonly',
+1 -1
src/modules/cards/infrastructure/IFramelyMetadataService.ts
··· 1 1 import { IMetadataService } from '../domain/services/IMetadataService'; 2 2 import { UrlMetadata } from '../domain/value-objects/UrlMetadata'; 3 3 import { URL } from '../domain/value-objects/URL'; 4 - import { Result, ok, err } from '../../../shared/core/Result'; 4 + import { Result, err } from '../../../shared/core/Result'; 5 5 6 6 interface IFramelyMeta { 7 7 title?: string;