Glob Tester
Test glob patterns against a list of file paths in real-time.
Presets:
3 / 7 matched
src/components/Header.vueMatch
src/components/Footer.vueMatch
src/Button.vueMatch
src/utils/math.tsNo match
tests/unit/app.test.tsNo match
package.jsonNo match
docs/README.mdNo match
About glob patterns
A glob pattern selects files by name. This tool tests a pattern against a list of paths and shows which paths match, so you can correct the pattern before you use it.
One star matches inside a single path segment. Two stars match across segments, so src/**/*.ts finds a file at any depth and src/*.ts finds one only at the top. This is the most common mistake.
Use it to check a .gitignore rule, a test file pattern, a build include list, or a CI path filter.