# README
wildmatch
package wildmatch
is a reimplementation of Git's wildmatch.c
-style filepath pattern matching.
For more information, see the godoc.
# Functions
NewWildmatch constructs a new Wildmatch instance which matches filepaths according to the given pattern and the rules for matching above.
# Variables
Basename allows the receiving Wildmatch to match paths where the pattern matches only the basename of the path when the pattern does not contain directory separators.
CaseFold allows the receiving Wildmatch to match paths with different case structuring as in the pattern.
Contents indicates that if a pattern matches a directory that is a parent of a path, then that path is included.
GitAttributes augments the functionality of the matching algorithm to match behavior of git when working with .gitattributes files.
SystemCase either folds or does not fold filepaths and patterns, according to whether or not the operating system on which Wildmatch runs supports case sensitive files or not.