/** * @fileoverview Pattern inspection limits and constants. */ export const MAX_INSPECT_CHARS = 250_000; export const MAX_MARKERS = 50; export const MAX_REGEXES = 8; export const MAX_REGEX_LENGTH = 600; export const MAX_MATCHES = 100; export const MAX_EXCERPTS = 8; export const MAX_OCCURRENCES = 10; export const MAX_EXCERPT_CHARS = 8_000; export const VALID_REGEX_FLAGS = /^[dgimsuvy]*$/u;