summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/doc/invalid_url.out
AgeCommit message (Collapse)Author
2024-01-08perf: skip expanding exclude globs (#21817)David Sherret
We were calling `expand_glob` on our excludes, which is very expensive and unnecessary because we can pattern match while traversing instead. 1. Doesn't expand "exclude" globs. Instead pattern matches while walking the directory. 2. Splits up the "include" into base paths and applicable file patterns. This causes less pattern matching to occur because we're only pattern matching on patterns that might match and not ones in completely unrelated directories.
2021-08-11chore: move test files to testdata directory (#11601)David Sherret