Barrel exports for manga filtering utilities. Provides functions for skipping, exact matching, and inclusion decision logic.

export {
shouldIgnoreForAutomaticMatching,
shouldSkipManga,
} from "./skip-rules";

export { isExactMatch } from "./exact-match-checker";

export {
shouldIncludeMangaExact,
shouldIncludeMangaRegular,
type InclusionResult,
} from "./inclusion-rules";

export {
shouldSkipByCustomRules,
shouldAcceptByCustomRules,
getCustomRuleMatchInfo,
clearRegexCache,
} from "./custom-rules";

export {
applySystemContentFilters,
type SystemFilterConfig,
} from "./system-filters";

References

shouldIgnoreForAutomaticMatching → shouldIgnoreForAutomaticMatching
shouldSkipManga → shouldSkipManga
isExactMatch → isExactMatch
shouldIncludeMangaExact → shouldIncludeMangaExact
shouldIncludeMangaRegular → shouldIncludeMangaRegular
InclusionResult → InclusionResult
shouldSkipByCustomRules → shouldSkipByCustomRules
shouldAcceptByCustomRules → shouldAcceptByCustomRules
getCustomRuleMatchInfo → getCustomRuleMatchInfo
clearRegexCache → clearRegexCache
applySystemContentFilters → applySystemContentFilters
SystemFilterConfig → SystemFilterConfig