interface FilePathValidityConfig {
    additionalReadFunctions: FunctionInfo[];
    additionalWriteFunctions: FunctionInfo[];
    includeUnknown: boolean;
    [key: string]: unknown;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: unknown

Hierarchy-Diagram

UML class diagram of FilePathValidityConfig

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.

includeUnknown: boolean

Whether unknown file paths should be included as linting results.