FlowGuard API - v1.2.0-rc.2
    Preparing search index...

    Interface RepoSignals

    Signals from the repository for automatic profile detection.

    Profiles use these signals to determine if they match the repo:

    • files: all file paths in the repo (relative to root)
    • packageFiles: package manager files (package.json, pom.xml, build.gradle, etc.)
    • configFiles: config files (.eslintrc, tsconfig.json, Dockerfile, etc.)
    interface RepoSignals {
        files: readonly string[];
        packageFiles: readonly string[];
        configFiles: readonly string[];
    }
    Index

    Properties

    files: readonly string[]
    packageFiles: readonly string[]
    configFiles: readonly string[]