@eagleoutice/flowr - v2.10.9
    Preparing search index...
    NO_LEAKED_CREDENTIALS: {
        createSearch: () => FlowrSearchBuilderOut<
            "all",
            [],
            ParentInformation,
            "filter",
        >;
        info: {
            certainty: BestEffort;
            defaultConfig: {
                credentialNamePattern: "(?:password|passwd|pwd|secret|api[_.]?key|api[_.]?token|access[_.]?token|auth[_.]?token|bearer[_.]?token|private[_.]?key|credential)";
                credentialValuePattern: string;
            };
            description: "Detects hardcoded credentials assigned to variables whose names suggest they hold passwords, tokens, or API keys, or whose values match known credential formats (AWS, GitHub, Slack, Stripe, SSH).";
            name: "No Leaked Credentials";
            tags: readonly [Security, Experimental, Smell];
        };
        prettyPrint: {
            full: (result: NoLeakedCredentialsResult) => string;
            query: (result: NoLeakedCredentialsResult) => string;
        };
        processSearchResult: (
            elements: FlowrSearchElements<
                ParentInformation,
                FlowrSearchElement<ParentInformation>[],
            >,
            config: NoLeakedCredentialsConfig,
            data: ReadonlyFlowrAnalysisProvider<KnownParser>,
        ) => Promise<
            {
                ".meta": NoLeakedCredentialsMetadata;
                results: NoLeakedCredentialsResult[];
            },
        >;
    } = ...

    Type Declaration