specification
specification copied to clipboard
Clarify glob matching
Taking the specification literally, the glob *.py
would not match foo/bar.py
since foo/bar
includes the slash character. The C library for editorconfig adds **/
to the start of the glob if it does not have a slash in it (see editorconfig.c:260), but this should really be in the spec.