envjoy - v0.1.0
    Preparing search index...

    Interface DiffOptions

    interface DiffOptions {
        checkEmpty?: boolean;
        checkExtra?: boolean;
        ignore?: readonly string[];
    }
    Index
    checkEmpty?: boolean

    Treat empty values in the actual env as drift. Default true.

    checkExtra?: boolean

    Treat extra keys (present in env, absent from example) as drift. Default true. Set false to ignore extras (some teams keep local-only keys).

    ignore?: readonly string[]

    Keys to ignore entirely (e.g. injected by the platform). Exact matches.