@eagleoutice/flowr - v2.10.9
    Preparing search index...
    interface FilePathValidityConfig {
        additionalReadFunctions: FunctionInfo[];
        additionalWriteFunctions: FunctionInfo[];
        checkUrls: boolean;
        includeUnknown: boolean;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of FilePathValidityConfig
    Index

    Properties

    additionalReadFunctions: FunctionInfo[]

    The set of functions that should additionally be considered as reading a file path. Entries in this array use the FunctionInfo format from the dependencies query.

    additionalWriteFunctions: FunctionInfo[]

    The set of functions that should additionally be considered as writing to a file path. Entries in this array use the FunctionInfo format from the dependencies query.

    checkUrls: boolean

    Whether URLs should be validated by checking the endpoint exists. When false (default), URLs are silently ignored. When true, an HTTP HEAD request is made and the URL is reported if unreachable.

    includeUnknown: boolean

    Whether unknown file paths should be included as linting results.