globstandard.com

globstandard: The missing glob standard

IEEE and POSIX forgot to define a standard, so here is the standard. Following globstandard will allow your users to re-use the globs they know without unexpected behavior.

Glob Primer

“Globs” are the patterns you type when you do stuff like ls *.js on the command line, or put build/* in a .gitignore file.

Before parsing the path part patterns, braced sections are expanded into a set. Braced sections start with { and end with }, with any number of comma-delimited sections within. Braced sections may contain slash characters, so a{/b/c,bcd} would expand into a/b/c and abcd.

The following characters have special magic meaning when used in a path portion:

Dots

If a file or directory path portion has a . as the first character, then it will not match any glob pattern unless that pattern’s corresponding path part also has a . as its first character.

For example, the pattern a/.*/c would match the file at a/.b/c. However the pattern a/*/c would not, because * does not start with a dot character.

You can make glob treat dots as normal characters by setting dot:true in the options.

Basename matching option

Default: false

When basename matching is enabled, **/*/ is inserted to the beginning of any pattern not beginning with / or ./.

Recommended naming:

Not yet in this standard yet