• Checks if a manga should be ignored for automatic matching. Checks against automatic matching blacklist (case-insensitive).

    Parameters

    Returns boolean

    True if manga is in the automatic matching blacklist

    export function shouldIgnoreForAutomaticMatching(manga: AniListManga): boolean {
    return isBlacklistedManga(manga);
    }