Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IOptions

Hierarchy

  • IOptions

Index

Properties

Optional debug

debug: undefined | false | true

Dump a ton of stuff to stderr.

default

false

Optional dot

dot: undefined | false | true

Allow patterns to match filenames starting with a period, even if the pattern does not explicitly have a period in that spot.

default

false

Optional flipNegate

flipNegate: undefined | false | true

Returns from negate expressions the same as if they were not negated. (Ie, true on a hit, false on a miss.)

default

false

Optional matchBase

matchBase: undefined | false | true

If set, then patterns without slashes will be matched against the basename of the path if it contains slashes.

default

false

Optional nobrace

nobrace: undefined | false | true

Do not expand {a,b} and {1..3} brace sets.

default

false

Optional nocase

nocase: undefined | false | true

Perform a case-insensitive match.

default

false

Optional nocomment

nocomment: undefined | false | true

Suppress the behavior of treating # at the start of a pattern as a comment.

default

false

Optional noext

noext: undefined | false | true

Disable "extglob" style patterns like +(a|b).

default

false

Optional noglobstar

noglobstar: undefined | false | true

Disable ** matching against multiple folder names.

default

false

Optional nonegate

nonegate: undefined | false | true

Suppress the behavior of treating a leading ! character as negation.

default

false

Optional nonull

nonull: undefined | false | true

When a match is not found by minimatch.match, return a list containing the pattern itself if this option is set. Otherwise, an empty list is returned if there are no matches.

default

false