<!-- Before proposing rule changes, please make sure it hasn't been posted already. You can see all open propositions here: https://github.com/vuejs/eslint-plugin-vue/issues?q=is%3Aopen+is%3Aissue+label%3A%22new+rule+proposition%22 --> **What rule do you want to change?** I want the `vue/component-name-in-template-casing` to support regexes for its `options.globals` option the way it does for its `ignores` options. In my use case, we have prepended every component in our design system with `c-` and globally registered these components. Rather than producing and keeping a list of all those components in sync as they are developed, I'd like to use the regex `/^c-/` and capture them. **Does this change cause the rule to produce more or fewer warnings?** Neither. Should make it simpler to create the same warnings. **How will the change be implemented? (New option, new default behavior, etc.)?** I imagine by also mapping with the `toRegex...` helper function used on the `ignores` option **Please provide some example code that this change will affect:** <!-- Put your code examples here --> ```vue ``` **What does the rule currently do for this code?** It requires you enumerate every single global component name you want to include in the linting. **What will the rule do after it's changed?** A regex could potentially cover many globally registered component names if they follow a namespacing pattern. **Additional context** <!-- Add any other context or screenshots about the feature request here. -->