Interface DiveOptions

Options for [[dive]].

interface DiveOptions {
    all?: boolean;
    directories?: boolean;
    files?: boolean;
    ignore?: string | false | RegExp;
    recursive?: boolean;
}

Properties

all?: boolean

If set to true, this will show "dot files" and files in "dot directories", e.g. ".gitignore" or ".git/HEAD".

directories?: boolean

If set to true, this will call action on directories, too.

files?: boolean

If set to false, this won't call action on files any more.

ignore?: string | false | RegExp

If set to a string or RegExp, all files and directories that match will be ignored.

recursive?: boolean

If set to false, this will ignore subdirectories.

Generated using TypeDoc