Right now a glob pattern such as *.jpg will ignore dot files, which is expected.
However glob patterns that are meant to match dot files such as .*file will never match anything as the default ignores (https://github.com/jiwonz/glob-lune/blob/main/src/lib.luau#L6) are always applied no matter what.
I'd also like to propose a config that just disables this behavior and always matches dot files no matter what.